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