Interface SchemaInformationService
-
- All Known Implementing Classes:
HibernateSchemaInformationService
@ThreadSafe public interface SchemaInformationService
Provides a service to get database related information.- Since:
- 8.0
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description org.hibernate.boot.model.naming.Identifier
getCurrentCatalog()
org.hibernate.boot.model.naming.Identifier
getCurrentSchema()
org.hibernate.tool.schema.extract.spi.DatabaseInformation
getDatabaseInformation()
org.hibernate.dialect.Dialect
getDialect()
-
-
-
Method Detail
-
getDatabaseInformation
org.hibernate.tool.schema.extract.spi.DatabaseInformation getDatabaseInformation() throws SQLException
- Throws:
SQLException
-
getDialect
org.hibernate.dialect.Dialect getDialect()
-
getCurrentCatalog
org.hibernate.boot.model.naming.Identifier getCurrentCatalog()
-
getCurrentSchema
org.hibernate.boot.model.naming.Identifier getCurrentSchema()
-
-