Interface JdbcSettings
- All Superinterfaces:
AgroalSettings,C3p0Settings,HikariCPSettings,ProxoolSettings
- All Known Subinterfaces:
AvailableSettings
- All Known Implementing Classes:
Environment
public interfaceJdbcSettingsextendsC3p0Settings,ProxoolSettings,AgroalSettings,HikariCPSettings
Settings related to JDBC, Connections, pools, Dialects, etc
Field Summary
Fields Modifier and Type Field Description staticStringALLOW_METADATA_ON_BOOTWhether access to JDBCmetadata is allowed during bootstrap.staticStringAUTOCOMMITControls the autocommit mode of JDBC connections obtained from anyConnectionProviderimplementation which respects this setting, which the built-in implementations do, except forDatasourceConnectionProviderImpl.staticStringCONNECTION_HANDLINGSpecifies how Hibernate should manage JDBC connections in terms of acquisition and release, either: an instance of the enumerationPhysicalConnectionHandlingMode, or the name of one of its instances.staticStringCONNECTION_PREFIXA prefix for properties specifying arbitrary JDBC connection properties.staticStringCONNECTION_PROVIDERSpecifies aConnectionProviderto use for obtaining JDBC connections, either: an instance ofConnectionProvider, aClassrepresenting a class that implementsConnectionProvider, or the name of a class that implementsConnectionProvider.staticStringCONNECTION_PROVIDER_DISABLES_AUTOCOMMITIndicates that Connections obtained from the configuredConnectionProviderhave auto-commit already disabled when they are acquired.staticStringDATASOURCEDeprecated.The JPA-standardJAKARTA_JTA_DATASOURCEorJAKARTA_JTA_DATASOURCEsetting is now preferred.staticStringDIALECTSpecifies the HibernateSQL dialect, either an instance ofDialect, aClassrepresenting a class that extendsDialect, or the name of a class that extendsDialect.staticStringDIALECT_DB_MAJOR_VERSIONDeprecated.UseJAKARTA_HBM2DDL_DB_MAJOR_VERSIONinsteadstaticStringDIALECT_DB_MINOR_VERSIONDeprecated.UseJAKARTA_HBM2DDL_DB_MINOR_VERSIONinsteadstaticStringDIALECT_DB_NAMEDeprecated.UseJAKARTA_HBM2DDL_DB_NAMEinsteadstaticStringDIALECT_DB_VERSIONDeprecated.UseJAKARTA_HBM2DDL_DB_VERSIONinsteadstaticStringDIALECT_NATIVE_PARAM_MARKERSControls whether to use JDBC markers (`?`) or dialect native markers for parameters withinpreparable SQL statements.staticStringDIALECT_RESOLVERSSpecifies additionalDialectResolverimplementations to register with the standardDialectFactory.staticStringDRIVERDeprecated.The JPA-standard settingJAKARTA_JDBC_DRIVERis now preferred.staticStringFORMAT_SQLEnables formatting of SQL logged to the console.staticStringHBM2DDL_CONNECTIONDeprecated.UseJAKARTA_HBM2DDL_CONNECTIONinsteadstaticStringHIGHLIGHT_SQLEnables highlighting of SQL logged to the console using ANSI escape codes.staticStringISOLATIONSpecified the JDBC transaction isolation level.staticStringJAKARTA_HBM2DDL_CONNECTIONAllows passing a specificConnectioninstance to be used bySchemaManagementToolfor the purpose of determining theDialect, and for performingdatabase actionsif requested.staticStringJAKARTA_HBM2DDL_DB_MAJOR_VERSIONUsed in conjunction with"jakarta.persistence.database-product-name" for the purpose of determining theDialectto use when the name does not provide enough detail.staticStringJAKARTA_HBM2DDL_DB_MINOR_VERSIONUsed in conjunction with"jakarta.persistence.database-product-name" for the purpose of determining theDialectto use when the name does not provide enough detail.staticStringJAKARTA_HBM2DDL_DB_NAMESpecifies the name of the database vendor (as would be reported byDatabaseMetaData.getDatabaseProductName()) for the purpose of determining theDialectto use.staticStringJAKARTA_HBM2DDL_DB_VERSIONUsed in conjunction with"jakarta.persistence.database-product-name" for the purpose of determining theDialectto use when the name does not provide enough detail.staticStringJAKARTA_JDBC_DRIVERSpecifies the name of a JDBC driver to use to connect to the database.staticStringJAKARTA_JDBC_PASSWORDSpecifies the password to use when connecting via JDBC.staticStringJAKARTA_JDBC_URLSpecifies the JDBC connection URL to use to connect to the database.staticStringJAKARTA_JDBC_USERSpecifies the database user to use when connecting via JDBC.staticStringJAKARTA_JTA_DATASOURCESpecifies a JTADataSourceto use for Connections.staticStringJAKARTA_NON_JTA_DATASOURCESpecifies a non-JTADataSourceto use for Connections.staticStringJDBC_TIME_ZONESpecifies thetime zone to use in the JDBC driver, which is supposed to match the database timezone.staticStringJPA_JDBC_DRIVERDeprecated.UseJAKARTA_JDBC_DRIVERinsteadstaticStringJPA_JDBC_PASSWORDDeprecated.UseJAKARTA_JDBC_PASSWORDinsteadstaticStringJPA_JDBC_URLDeprecated.UseJAKARTA_JDBC_URLinsteadstaticStringJPA_JDBC_USERDeprecated.UseJAKARTA_JDBC_USERinsteadstaticStringJPA_JTA_DATASOURCEDeprecated.UseJAKARTA_JTA_DATASOURCEinsteadstaticStringJPA_NON_JTA_DATASOURCEDeprecated.UseJAKARTA_NON_JTA_DATASOURCEinsteadstaticStringLOG_JDBC_WARNINGSWhen enabled, specifies that JDBC statement warnings should be logged.staticStringLOG_SLOW_QUERYSpecifies a duration in milliseconds defining the minimum query execution time that characterizes a "slow" query.staticStringNON_CONTEXTUAL_LOB_CREATIONWhen enabled, specifies that Hibernate should not use contextual LOB creation.staticStringPASSDeprecated.The JPA-standard settingJAKARTA_JDBC_PASSWORDis now preferred.staticStringPOOL_SIZESpecifies the maximum number of inactive connections for the built-inconnection pool.staticStringSHOW_SQLEnables logging of generated SQL to the console.staticStringSTATEMENT_FETCH_SIZEGives the JDBC driver a hint as to the number of rows that should be fetched from the database when more rows are needed.staticStringSTATEMENT_INSPECTORSpecifies aStatementInspectorimplementation associated with theSessionFactory, either: an instance ofStatementInspector, aClassrepresenting an class that implementsStatementInspector, or the name of a class that implementsStatementInspector.staticStringURLDeprecated.The JPA-standard settingJAKARTA_JDBC_URLis now preferred.staticStringUSE_GET_GENERATED_KEYSSpecifies that generated primary keys may be retrieved using the JDBC 3Statement.getGeneratedKeys()operation.staticStringUSE_SCROLLABLE_RESULTSETControls how Hibernate should handle scrollable results -trueindicates thatinsensitive scrolling can be usedfalseindicates thatsensitive scrolling must be usedstaticStringUSE_SQL_COMMENTSSpecifies that comments should be added to the generated SQL.staticStringUSERDeprecated.The JPA-standard settingJAKARTA_JDBC_USERis now preferred.Fields inherited from interface org.hibernate.cfg.AgroalSettings
AGROAL_ACQUISITION_TIMEOUT,AGROAL_CONFIG_PREFIX,AGROAL_FLUSH_ON_CLOSE,AGROAL_IDLE_TIMEOUT,AGROAL_IDLE_VALIDATION_TIMEOUT,AGROAL_INITIAL_SIZE,AGROAL_INITIAL_SQL,AGROAL_LEAK_TIMEOUT,AGROAL_MAX_LIFETIME,AGROAL_MAX_SIZE,AGROAL_MIN_SIZE,AGROAL_VALIDATE_ON_BORROW,AGROAL_VALIDATION_TIMEOUT
Fields inherited from interface org.hibernate.cfg.C3p0Settings
C3P0_ACQUIRE_INCREMENT,C3P0_CONFIG_PREFIX,C3P0_IDLE_TEST_PERIOD,C3P0_MAX_SIZE,C3P0_MAX_STATEMENTS,C3P0_MIN_SIZE,C3P0_TIMEOUT
Fields inherited from interface org.hibernate.cfg.HikariCPSettings
HIKARI_ACQUISITION_TIMEOUT,HIKARI_CONFIG_PREFIX,HIKARI_IDLE_TIMEOUT,HIKARI_INITIAL_SQL,HIKARI_INITIALIZATION_TIMEOUT,HIKARI_ISOLATE_INTERNAL_QUERIES,HIKARI_KEEPALIVE_TIME,HIKARI_LEAK_TIMEOUT,HIKARI_MAX_LIFETIME,HIKARI_MAX_SIZE,HIKARI_MIN_IDLE_SIZE,HIKARI_POOL_NAME,HIKARI_READ_ONLY,HIKARI_VALIDATION_TIMEOUT
Fields inherited from interface org.hibernate.cfg.ProxoolSettings
PROXOOL_CONFIG_PREFIX,PROXOOL_EXISTING_POOL,PROXOOL_POOL_ALIAS,PROXOOL_PROPERTIES,PROXOOL_XML
Field Detail
JAKARTA_JTA_DATASOURCE
static final String JAKARTA_JTA_DATASOURCE
Specifies a JTADataSourceto use for Connections. Hibernate allows either- an instance of
DataSource - a JNDI name under which to obtain the
DataSource; see alsoEnvironmentSettings.JNDI_URL,EnvironmentSettings.JNDI_CLASS,EnvironmentSettings.JNDI_PREFIX
See JPA 2 sections 9.4.3 and 8.2.1.5
- See Also:
- Constant Field Values
- an instance of
JAKARTA_NON_JTA_DATASOURCE
static final String JAKARTA_NON_JTA_DATASOURCE
Specifies a non-JTADataSourceto use for Connections. Hibernate allows either- an instance of
DataSource - a JNDI name under which to obtain the
DataSource; see alsoEnvironmentSettings.JNDI_URL,EnvironmentSettings.JNDI_CLASS,EnvironmentSettings.JNDI_PREFIX
See JPA 2 sections 9.4.3 and 8.2.1.5
- See Also:
- Constant Field Values
- an instance of
JAKARTA_JDBC_DRIVER
static final String JAKARTA_JDBC_DRIVER
Specifies the name of a JDBC driver to use to connect to the database.Used in conjunction with
JAKARTA_JDBC_URL,JAKARTA_JDBC_USERandJAKARTA_JDBC_PASSWORDto specify how to connect to the database.When connections are obtained from a
DataSource, use eitherJAKARTA_JTA_DATASOURCEorJAKARTA_NON_JTA_DATASOURCEinstead.See section 8.2.1.9
- See Also:
- Constant Field Values
JAKARTA_JDBC_URL
static final String JAKARTA_JDBC_URL
Specifies the JDBC connection URL to use to connect to the database.Used in conjunction with
JAKARTA_JDBC_DRIVER,JAKARTA_JDBC_USERandJAKARTA_JDBC_PASSWORDto specify how to connect to the database.When connections are obtained from a
DataSource, use eitherJAKARTA_JTA_DATASOURCEorJAKARTA_NON_JTA_DATASOURCEinstead.See section 8.2.1.9
- See Also:
- Constant Field Values
JAKARTA_JDBC_USER
static final String JAKARTA_JDBC_USER
Specifies the database user to use when connecting via JDBC.Used in conjunction with
JAKARTA_JDBC_DRIVER,JAKARTA_JDBC_URLandJAKARTA_JDBC_PASSWORDto specify how to connect to the database.Depending on the configured
ConnectionProvider, the specified username might be used to:- create a JDBC connection using
DriverManager.getConnection(String,java.util.Properties)orDriver.connect(String,java.util.Properties), or - obtain a JDBC connection from a datasource, using
DataSource.getConnection(String, String).
See section 8.2.1.9
- See Also:
- Constant Field Values
- create a JDBC connection using
JAKARTA_JDBC_PASSWORD
static final String JAKARTA_JDBC_PASSWORD
Specifies the password to use when connecting via JDBC.Used in conjunction with
JAKARTA_JDBC_DRIVER,JAKARTA_JDBC_URLandJAKARTA_JDBC_USERto specify how to connect to the database.See JPA 2 section 8.2.1.9
- See Also:
- Constant Field Values
JAKARTA_HBM2DDL_CONNECTION
static final String JAKARTA_HBM2DDL_CONNECTION
Allows passing a specificConnectioninstance to be used bySchemaManagementToolfor the purpose of determining theDialect, and for performingdatabase actionsif requested.For
Dialectresolution,"jakarta.persistence.database-product-name" and, optionally,"jakarta.persistence.database-product-version","jakarta.persistence.database-major-version", and"jakarta.persistence.database-minor-version" can be used instead
JAKARTA_HBM2DDL_DB_NAME
static final String JAKARTA_HBM2DDL_DB_NAME
Specifies the name of the database vendor (as would be reported byDatabaseMetaData.getDatabaseProductName()) for the purpose of determining theDialectto use.For cases when the name of the database vendor is not enough alone, a combination of"jakarta.persistence.database-product-version","jakarta.persistence.database-major-version""jakarta.persistence.database-minor-version" can be used instead
- See Also:
JAKARTA_HBM2DDL_DB_VERSION,JAKARTA_HBM2DDL_DB_MAJOR_VERSION,JAKARTA_HBM2DDL_DB_MINOR_VERSION,Constant Field Values- Implementation Specification:
database actionsare not available when supplying just the name and versions
JAKARTA_HBM2DDL_DB_VERSION
static final String JAKARTA_HBM2DDL_DB_VERSION
Used in conjunction with"jakarta.persistence.database-product-name" for the purpose of determining theDialectto use when the name does not provide enough detail.The value is expected to match what would be returned from
DatabaseMetaData.getDatabaseProductVersion()) for the underlying database.
JAKARTA_HBM2DDL_DB_MAJOR_VERSION
static final String JAKARTA_HBM2DDL_DB_MAJOR_VERSION
Used in conjunction with"jakarta.persistence.database-product-name" for the purpose of determining theDialectto use when the name does not provide enough detail.The value is expected to match what would be returned from
DatabaseMetaData.getDatabaseMajorVersion()) for the underlying database.
JAKARTA_HBM2DDL_DB_MINOR_VERSION
static final String JAKARTA_HBM2DDL_DB_MINOR_VERSION
Used in conjunction with"jakarta.persistence.database-product-name" for the purpose of determining theDialectto use when the name does not provide enough detail.The value is expected to match what would be returned from
DatabaseMetaData.getDatabaseMinorVersion()) for the underlying database.
DIALECT
static final String DIALECT
Specifies the HibernateSQL dialect, either- an instance of
Dialect, - a
Classrepresenting a class that extendsDialect, or - the name of a class that extends
Dialect.
By default, Hibernate will attempt to automatically determine the dialect from theJDBC URL and JDBC metadata, so this setting is not usually necessary.
- See Also:
Dialect,Constant Field Values- API Note:
- As of Hibernate 6, this property should not be explicitly specified, except when using a custom user-written implementation of
Dialect. Instead, applications should allow Hibernate to select theDialectautomatically.
- an instance of
DIALECT_RESOLVERS
static final String DIALECT_RESOLVERS
Specifies additionalDialectResolverimplementations to register with the standardDialectFactory.- See Also:
- Constant Field Values
CONNECTION_PROVIDER
static final String CONNECTION_PROVIDER
Specifies aConnectionProviderto use for obtaining JDBC connections, either:- an instance of
ConnectionProvider, - a
Classrepresenting a class that implementsConnectionProvider, or - the name of a class that implements
ConnectionProvider.
The term
"class"appears in the setting name due to legacy reasons; however it can accept instances.- See Also:
- Constant Field Values
- an instance of
POOL_SIZE
static final String POOL_SIZE
Specifies the maximum number of inactive connections for the built-inconnection pool.- See Also:
- Constant Field Values
- Default Value:
- 20
ISOLATION
static final String ISOLATION
Specified the JDBC transaction isolation level.- See Also:
- Constant Field Values
AUTOCOMMIT
static final String AUTOCOMMIT
Controls the autocommit mode of JDBC connections obtained from anyConnectionProviderimplementation which respects this setting, which the built-in implementations do, except forDatasourceConnectionProviderImpl.- See Also:
- Constant Field Values
CONNECTION_PROVIDER_DISABLES_AUTOCOMMIT
static final String CONNECTION_PROVIDER_DISABLES_AUTOCOMMIT
Indicates that Connections obtained from the configuredConnectionProviderhave auto-commit already disabled when they are acquired.It is inappropriate to set this value to
truewhen the Connections returned by the provider do not, in fact, have auto-commit disabled. Doing so may lead to Hibernate executing SQL operations outside the scope of any transaction.- Since:
- 5.2.10
- See Also:
SessionFactoryBuilder.applyConnectionProviderDisablesAutoCommit(boolean),Constant Field Values- API Note:
- By default, Hibernate calls
Connection.setAutoCommit(boolean)on newly-obtained connections. This setting allows to circumvent that call (as well as other operations) in the interest of performance. - Default Value:
false
CONNECTION_PREFIX
static final String CONNECTION_PREFIX
A prefix for properties specifying arbitrary JDBC connection properties. These properties are simply passed along to the provider when creating a connection.For example, declaring
hibernate.connection.foo=bartells Hibernate to appendfoo=barto the JDBC connection URL.- See Also:
- Constant Field Values
STATEMENT_INSPECTOR
static final String STATEMENT_INSPECTOR
Specifies aStatementInspectorimplementation associated with theSessionFactory, either:- an instance of
StatementInspector, - a
Classrepresenting an class that implementsStatementInspector, or - the name of a class that implements
StatementInspector.
- an instance of
SHOW_SQL
static final String SHOW_SQL
Enables logging of generated SQL to the console.- See Also:
- Constant Field Values
- Default Value:
false
FORMAT_SQL
static final String FORMAT_SQL
Enables formatting of SQL logged to the console.- See Also:
- Constant Field Values
- Default Value:
false
HIGHLIGHT_SQL
static final String HIGHLIGHT_SQL
Enables highlighting of SQL logged to the console using ANSI escape codes.- See Also:
- Constant Field Values
- Default Value:
false
LOG_SLOW_QUERY
static final String LOG_SLOW_QUERY
Specifies a duration in milliseconds defining the minimum query execution time that characterizes a "slow" query. Any SQL query which takes longer than this amount of time to execute will be logged.A value of
0, the default, disables logging of "slow" queries.
USE_SQL_COMMENTS
static final String USE_SQL_COMMENTS
Specifies that comments should be added to the generated SQL.- See Also:
SessionFactoryBuilder.applySqlComments(boolean),Constant Field Values- Default Value:
false
STATEMENT_FETCH_SIZE
static final String STATEMENT_FETCH_SIZE
Gives the JDBC driver a hint as to the number of rows that should be fetched from the database when more rows are needed. If0, the JDBC driver's default settings will be used.
USE_SCROLLABLE_RESULTSET
static final String USE_SCROLLABLE_RESULTSET
Controls how Hibernate should handle scrollable results -trueindicates thatinsensitive scrolling can be usedfalseindicates thatsensitive scrolling must be used
- See Also:
SessionFactoryBuilder.applyScrollableResultsSupport(boolean),Query.scroll(),ExtractedDatabaseMetaData.supportsScrollableResults(),Constant Field Values- Default Value:
trueif the underlying driver supports scrollable results
DIALECT_NATIVE_PARAM_MARKERS
@Incubatingstatic final String DIALECT_NATIVE_PARAM_MARKERS
Controls whether to use JDBC markers (`?`) or dialect native markers for parameters withinpreparable SQL statements.- Since:
- 6.2
- See Also:
ParameterMarkerStrategy,Dialect.getNativeParameterMarkerStrategy(),Constant Field Values- Implementation Note:
Falseby default, indicating standard JDBC parameter markers (`?`) are used. Set totrueto use the Dialect's native markers, if any. For Dialects without native markers, the standard JDBC strategy is used.
NON_CONTEXTUAL_LOB_CREATION
static final String NON_CONTEXTUAL_LOB_CREATION
When enabled, specifies that Hibernate should not use contextual LOB creation.
LOG_JDBC_WARNINGS
static final String LOG_JDBC_WARNINGS
When enabled, specifies that JDBC statement warnings should be logged.The default is determined by
Dialect.isJdbcLogWarningsEnabledByDefault().- Since:
- 5.1
- See Also:
Statement.getWarnings(),Constant Field Values
JDBC_TIME_ZONE
static final String JDBC_TIME_ZONE
Specifies thetime zone to use in the JDBC driver, which is supposed to match the database timezone.This is the timezone what will be passed to
PreparedStatement.setTimestamp(int, java.sql.Timestamp, java.util.Calendar)PreparedStatement.setTime(int, java.sql.Time, java.util.Calendar),ResultSet.getTimestamp(int, Calendar), andResultSet.getTime(int, Calendar)when binding parameters.The time zone may be given as:
- an instance of
TimeZone, - an instance of
ZoneId, or - a time zone ID string to be passed to
ZoneId.of(String).
By default, theJVM default time zone is assumed by the JDBC driver.
- Since:
- 5.2.3
- See Also:
- Constant Field Values
- an instance of
USE_GET_GENERATED_KEYS
static final String USE_GET_GENERATED_KEYS
Specifies that generated primary keys may be retrieved using the JDBC 3Statement.getGeneratedKeys()operation.Usually, performance will be improved if this behavior is enabled, assuming the JDBC driver supports
getGeneratedKeys().
CONNECTION_HANDLING
static final String CONNECTION_HANDLING
Specifies how Hibernate should manage JDBC connections in terms of acquisition and release, either:- an instance of the enumeration
PhysicalConnectionHandlingMode, or - the name of one of its instances.
The default is
DELAYED_ACQUISITION_AND_RELEASE_AFTER_TRANSACTION.- an instance of the enumeration
ALLOW_METADATA_ON_BOOT
static final String ALLOW_METADATA_ON_BOOT
Whether access to JDBCmetadata is allowed during bootstrap. Typically, Hibernate accesses this metadata to understand the capabilities of the underlying database to help minimize needed configuration. Disabling this access means that only explicit settings are used. At a minimum, the Dialect to use must be specified using either the"hibernate.dialect" or"jakarta.persistence.database-product-name" setting. When the Dialect to use is specified in this manner it is generally a good idea to specify thedatabase version as well - Dialects use the version to configure themselves.- Since:
- 6.5
- See Also:
- Constant Field Values
- API Note:
- The specified Dialect may also provide defaults into the "explicit" settings.
- Default Value:
true
DRIVER
@Deprecatedstatic final String DRIVER
Deprecated.The JPA-standard settingJAKARTA_JDBC_DRIVERis now preferred.- See Also:
- Constant Field Values
URL
@Deprecatedstatic final String URL
Deprecated.The JPA-standard settingJAKARTA_JDBC_URLis now preferred.- See Also:
- Constant Field Values
USER
@Deprecatedstatic final String USER
Deprecated.The JPA-standard settingJAKARTA_JDBC_USERis now preferred.- See Also:
PASS,Constant Field Values
PASS
@Deprecatedstatic final String PASS
Deprecated.The JPA-standard settingJAKARTA_JDBC_PASSWORDis now preferred.- See Also:
USER,Constant Field Values
DATASOURCE
@Deprecatedstatic final String DATASOURCE
Deprecated.The JPA-standardJAKARTA_JTA_DATASOURCEorJAKARTA_JTA_DATASOURCEsetting is now preferred.- See Also:
DataSource,Constant Field Values
JPA_JTA_DATASOURCE
@Deprecatedstatic final String JPA_JTA_DATASOURCE
Deprecated.UseJAKARTA_JTA_DATASOURCEinstead- See Also:
- Constant Field Values
JPA_NON_JTA_DATASOURCE
@Deprecatedstatic final String JPA_NON_JTA_DATASOURCE
Deprecated.UseJAKARTA_NON_JTA_DATASOURCEinstead- See Also:
- Constant Field Values
JPA_JDBC_DRIVER
@Deprecatedstatic final String JPA_JDBC_DRIVER
Deprecated.UseJAKARTA_JDBC_DRIVERinstead- See Also:
- Constant Field Values
JPA_JDBC_URL
@Deprecatedstatic final String JPA_JDBC_URL
Deprecated.UseJAKARTA_JDBC_URLinstead- See Also:
- Constant Field Values
JPA_JDBC_USER
@Deprecatedstatic final String JPA_JDBC_USER
Deprecated.UseJAKARTA_JDBC_USERinstead- See Also:
- Constant Field Values
JPA_JDBC_PASSWORD
@Deprecatedstatic final String JPA_JDBC_PASSWORD
Deprecated.UseJAKARTA_JDBC_PASSWORDinstead- See Also:
- Constant Field Values
HBM2DDL_CONNECTION
@Deprecatedstatic final String HBM2DDL_CONNECTION
Deprecated.UseJAKARTA_HBM2DDL_CONNECTIONinstead- See Also:
- Constant Field Values
DIALECT_DB_NAME
@Deprecatedstatic final String DIALECT_DB_NAME
Deprecated.UseJAKARTA_HBM2DDL_DB_NAMEinstead
DIALECT_DB_VERSION
@Deprecatedstatic final String DIALECT_DB_VERSION
Deprecated.UseJAKARTA_HBM2DDL_DB_VERSIONinstead- See Also:
DIALECT_DB_NAME,Constant Field Values
DIALECT_DB_MAJOR_VERSION
@Deprecatedstatic final String DIALECT_DB_MAJOR_VERSION
Deprecated.UseJAKARTA_HBM2DDL_DB_MAJOR_VERSIONinstead
DIALECT_DB_MINOR_VERSION
@Deprecatedstatic final String DIALECT_DB_MINOR_VERSION
Deprecated.UseJAKARTA_HBM2DDL_DB_MINOR_VERSIONinstead