001/*
002 * Copyright (c) 2009 The openGion Project.
003 *
004 * Licensed under the Apache License, Version 2.0 (the "License");
005 * you may not use this file except in compliance with the License.
006 * You may obtain a copy of the License at
007 *
008 *     http://www.apache.org/licenses/LICENSE-2.0
009 *
010 * Unless required by applicable law or agreed to in writing, software
011 * distributed under the License is distributed on an "AS IS" BASIS,
012 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND,
013 * either express or implied. See the License for the specific language
014 * governing permissions and limitations under the License.
015 */
016package org.opengion.plugin.table;
017
018/**
019 * TableFilter_SEQUENCE_ORACLE は、TableUpda インターフェースを継承した、DBTableModel 処理用の
020 * 実装クラスです。
021 *
022 * ※ 他のデータベースと同じ形で扱いたいため、用意したクラスですが、内容は、TableFilter_SEQUENCE と同じです。
023 *
024 * ここでは、シーケンス一覧の検索結果より、GF09 のシーケンス定義テーブルから
025 * 必要な情報を取得し、シーケンス作成スクリプトを作成します。
026 *
027 * この処理を実行するには、DBTableModelのカラムとして、
028 *  SEQNAME,INCREBY,STARTVAL,MINVAL,MAXVAL,FGCYCLE,SUCACHE
029 * が必要です。
030 *
031 * ※Firebirdに対して生成されるスクリプトでは、INCREBY,STARTVAL,MINVAL,MAXVAL,FGCYCLE,SUCACHEは無視されます。
032 *
033 * @og.rev 6.5.0.0 (2016/09/30) 新規作成
034 *
035 * @version  6.5.0.0  2016/09/13
036 * @author   Kazuhiko Hasegawa
037 * @since    JDK1.8,
038 */
039public class TableFilter_SEQUENCE_ORACLE extends TableFilter_SEQUENCE {
040        /** このプログラムのVERSION文字列を設定します。   {@value} */
041        private static final String VERSION = "6.5.0.0 (2016/09/30)" ;
042}