java.lang.Object | |
↳ | org.hibernate.dialect.resolver.AbstractDialectResolver |
![]() |
A templated resolver impl which delegates to the resolveDialectInternal(DatabaseMetaData)
method
and handles any thrown SQLExceptions.
Public Constructors | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
Public Methods | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
Determine the
Dialect to use based on the given JDBC DatabaseMetaData .
Here we template the resolution, delegating to resolveDialectInternal(DatabaseMetaData) and handling
SQLException s properly. |
Protected Methods | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
Perform the actual resolution without caring about handling
SQLException s. |
[Expand]
Inherited Methods | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
![]() | |||||||||||
![]() |
Determine the Dialect
to use based on the given JDBC DatabaseMetaData
. Implementations are
expected to return the Dialect
instance to use, or null if the DatabaseMetaData
does not match
the criteria handled by this impl.
resolveDialectInternal(DatabaseMetaData)
and handling
SQLException
s properly.
metaData | The JDBC metadata. |
---|
Perform the actual resolution without caring about handling SQLException
s.
metaData | The database metadata |
---|
SQLException | Indicates problems accessing the metadata. |
---|