| java.lang.Object | |
| ↳ | org.hibernate.dialect.resolver.DialectResolverSet |
A DialectResolver implementation which coordinates resolution by delegating to its
registered sub-resolvers. Sub-resolvers may be registered by calling either addResolver(DialectResolver) or
addResolverAtFirst(DialectResolver).
| Public Constructors | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
| Public Methods | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
Add a resolver at the end of the underlying resolver list.
| |||||||||||
Add a resolver at the beginning of the underlying resolver list.
| |||||||||||
Determine the
Dialect to use based on the given JDBC DatabaseMetaData.
| |||||||||||
|
[Expand]
Inherited Methods | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
From class
java.lang.Object
| |||||||||||
From interface
org.hibernate.dialect.resolver.DialectResolver
| |||||||||||
Add a resolver at the end of the underlying resolver list. The resolver added by this method is at lower priority than any other existing resolvers.
| resolver | The resolver to add. |
|---|
Add a resolver at the beginning of the underlying resolver list. The resolver added by this method is at higher priority than any other existing resolvers.
| resolver | The resolver to add. |
|---|
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.
| metaData | The JDBC metadata. |
|---|