Uses of Interface
org.hibernate.dialect.unique.UniqueDelegate
Packages that use UniqueDelegate
Package
Description
This package abstracts over the multifarious dialects of SQL
understood by the databases supported by Hibernate.
Support for
Dialect
-specific unique constraint definition.-
Uses of UniqueDelegate in org.hibernate.dialect
Methods in org.hibernate.dialect that return UniqueDelegateModifier and TypeMethodDescriptionprotected UniqueDelegate
DB2Dialect.createUniqueDelegate()
DB2Dialect.getUniqueDelegate()
Dialect.getUniqueDelegate()
Get theUniqueDelegate
supported by this dialectDialectDelegateWrapper.getUniqueDelegate()
H2Dialect.getUniqueDelegate()
HSQLDialect.getUniqueDelegate()
OracleDialect.getUniqueDelegate()
PostgreSQLDialect.getUniqueDelegate()
SpannerDialect.getUniqueDelegate()
SQLServerDialect.getUniqueDelegate()
SybaseDialect.getUniqueDelegate()
-
Uses of UniqueDelegate in org.hibernate.dialect.unique
Classes in org.hibernate.dialect.unique that implement UniqueDelegateModifier and TypeClassDescriptionclass
AUniqueDelegate
which usesalter table
commands to create and drop the unique constraint.class
AUniqueDelegate
which usescreate unique index
commands when necessary.class
AUniqueDelegate
which includes the unique constraint in thecreate table
statement, except when called during schema migration.class
AUniqueDelegate
that only creates unique constraints on not-null columns, and ignores requests for uniqueness for nullable columns.