- 既知の実装クラスのリスト:
DefaultTableMetaDataParser
public interface TableMetaDataParser
-
メソッドの概要
修飾子とタイプメソッド説明getAutoGeneratedColumns(DatabaseMetaData metaData, String tableName) Retrieves a list of auto-generated columns of the given table name from the database metadata.getColumnsMetaData(DatabaseMetaData metaData, String tableName) Gets a list of column metadata in the given table.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
Retrieves a list of primary keys columns of the given table name from the database metadata.- パラメータ:
metaData-tableName-- 戻り値:
- 例外:
SQLException
-