インタフェース TableMetaDataParser
-
- 既知の実装クラスのリスト:
DefaultTableMetaDataParser
public interface TableMetaDataParser
-
-
メソッドの概要
すべてのメソッド インスタンス・メソッド abstractメソッド 修飾子とタイプ メソッド 説明 List<String>getAutoGeneratedColumns(DatabaseMetaData metaData, String tableName)Retrieves a list of auto-generated columns of the given table name from the database metadata.List<ColumnMetaData>getColumnsMetaData(DatabaseMetaData metaData, String tableName)Gets a list of column metadata in the given table.List<String>getPrimaryKeys(DatabaseMetaData metaData, String tableName)Retrieves a list of primary keys columns of the given table name from the database metadata.
-
-
-
メソッドの詳細
-
getAutoGeneratedColumns
List<String> getAutoGeneratedColumns(DatabaseMetaData metaData, String tableName) throws SQLException
Retrieves a list of auto-generated columns of the given table name from the database metadata.- パラメータ:
metaData-tableName-- 戻り値:
- 例外:
SQLException
-
getColumnsMetaData
List<ColumnMetaData> getColumnsMetaData(DatabaseMetaData metaData, String tableName) throws SQLException
Gets a list of column metadata in the given table.- パラメータ:
metaData-tableName-- 戻り値:
- 例外:
SQLException
-
getPrimaryKeys
List<String> getPrimaryKeys(DatabaseMetaData metaData, String tableName) throws SQLException
Retrieves a list of primary keys columns of the given table name from the database metadata.- パラメータ:
metaData-tableName-- 戻り値:
- 例外:
SQLException
-
-