Interface DatabaseMetaDataReader
- Functional Interface:
- This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.
Functional interface used by
Database.readDatabaseMetaData(DatabaseMetaDataReader)
, which permits callers to examine a transient DatabaseMetaData
instance.- Since:
- 3.0.0
- Author:
- Mark Allen
-
Method Summary
Modifier and TypeMethodDescriptionvoid
read
(DatabaseMetaData databaseMetaData) Examines a JDBCDatabaseMetaData
, which provides comprehensive vendor-specific information about this database as a whole.
-
Method Details
-
read
Examines a JDBCDatabaseMetaData
, which provides comprehensive vendor-specific information about this database as a whole.- Parameters:
databaseMetaData
- JBDC metadata for this database- Throws:
SQLException
- if an error occurs while examining metadata
-