public interface DatabasePlatform
Modifier and Type | Interface and Description |
---|---|
static class |
DatabasePlatform.TypeDescriptor |
Modifier and Type | Field and Description |
---|---|
static String |
copyright |
static String |
STATUS_CREATED |
static String |
STATUS_DRIVER_ERROR |
static String |
STATUS_DRIVER_NOT_FOUND |
static String |
STATUS_OK |
Modifier and Type | Method and Description |
---|---|
String |
getConnectionStringTemplate() |
DatabasePlatform.TypeDescriptor |
getDatabaseSpecificType(Column column) |
String |
getDescription() |
Dialect |
getHibernateDialect() |
List<String[]> |
getSchemaNames(DatabaseMetaData databaseMetaData) |
String |
getStandardDriverClassName() |
String |
getStatus() |
boolean |
isApplicable(ConnectionProvider connectionProvider) |
boolean |
isDialectAutodetected()
Is Hibernate able to automatically the dialect from a JDBC connection for this database platform?
|
void |
shutdown(ConnectionProvider connectionProvider) |
void |
test() |
static final String copyright
static final String STATUS_CREATED
static final String STATUS_OK
static final String STATUS_DRIVER_NOT_FOUND
static final String STATUS_DRIVER_ERROR
String getDescription()
String getStandardDriverClassName()
Dialect getHibernateDialect()
boolean isDialectAutodetected()
String getConnectionStringTemplate()
String getStatus()
DatabasePlatform.TypeDescriptor getDatabaseSpecificType(Column column)
void test()
boolean isApplicable(ConnectionProvider connectionProvider)
void shutdown(ConnectionProvider connectionProvider)
List<String[]> getSchemaNames(DatabaseMetaData databaseMetaData) throws SQLException
SQLException