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