Package | Description |
---|---|
org.springframework.jdbc.support |
Support classes for the JDBC framework, used by the classes in the
jdbc.core and jdbc.object packages.
|
Modifier and Type | Method and Description |
---|---|
static Object |
JdbcUtils.extractDatabaseMetaData(DataSource dataSource,
DatabaseMetaDataCallback action)
Extract database meta-data via the given DatabaseMetaDataCallback.
|
static <T> T |
JdbcUtils.extractDatabaseMetaData(DataSource dataSource,
String metaDataMethodName)
Call the specified method on DatabaseMetaData for the given DataSource,
and extract the invocation result.
|
Object |
DatabaseMetaDataCallback.processMetaData(DatabaseMetaData dbmd)
Implementations must implement this method to process the meta-data
passed in.
|