Interface DatabaseConnectionInfo
public interface DatabaseConnectionInfo
Contract used for logging "database information" on bootstrap
- API Note:
- Most of the getters here may return
nullwhich indicates the value is not known
-
Method Summary
Modifier and TypeMethodDescriptionThe transaction auto-commit mode in effect.The default catalogThe database version.The transaction isolation-level in effect.The JDBC Driver to be used for connectionsThe default JDBC fetch size.The JDBC URL to be used for connectionsThe maximum connection pool size.The minimum connection pool size.The default schemabooleanbooleanCollects the information available here as a single String with the intent of using it in logging.
-
Method Details
-
getJdbcUrl
-
getJdbcDriver
-
getDialectVersion
-
getSchema
-
getCatalog
-
getAutoCommitMode
-
getIsolationLevel
-
getPoolMinSize
-
getPoolMaxSize
-
getJdbcFetchSize
-
hasSchema
-
hasCatalog
-
toInfoString
String toInfoString()Collects the information available here as a single String with the intent of using it in logging.
-