public class DefaultUniqueDelegate extends Object implements UniqueDelegate
| Constructor and Description |
|---|
DefaultUniqueDelegate(Dialect dialect)
Constructs DefaultUniqueDelegate
|
| Modifier and Type | Method and Description |
|---|---|
String |
getAlterTableToAddUniqueKeyCommand(UniqueKey uniqueKey)
Get the SQL ALTER TABLE command to be used to create the given UniqueKey.
|
String |
getAlterTableToAddUniqueKeyCommand(UniqueKey uniqueKey,
String defaultCatalog,
String defaultSchema)
Get the SQL ALTER TABLE command to be used to create the given UniqueKey.
|
String |
getAlterTableToDropUniqueKeyCommand(UniqueKey uniqueKey)
Get the SQL ALTER TABLE command to be used to drop the given UniqueKey.
|
String |
getAlterTableToDropUniqueKeyCommand(UniqueKey uniqueKey,
String defaultCatalog,
String defaultSchema)
Get the SQL ALTER TABLE command to be used to drop the given UniqueKey.
|
String |
getColumnDefinitionUniquenessFragment(Column column)
Get the fragment that can be used to make a column unique as part of its column definition.
|
String |
getColumnDefinitionUniquenessFragment(Column column)
Get the fragment that can be used to make a column unique as part of its column definition.
|
String |
getTableCreationUniqueConstraintsFragment(Table table)
Get the fragment that can be used to apply unique constraints as part of table creation.
|
String |
getTableCreationUniqueConstraintsFragment(Table table)
Get the fragment that can be used to apply unique constraints as part of table creation.
|
protected String |
uniqueConstraintSql(UniqueKey uniqueKey) |
protected String |
uniqueConstraintSql(UniqueKey uniqueKey) |
protected final Dialect dialect
public DefaultUniqueDelegate(Dialect dialect)
dialect - The dialect for which we are handling unique constraintspublic String getColumnDefinitionUniquenessFragment(Column column)
UniqueDelegategetColumnDefinitionUniquenessFragment in interface UniqueDelegatecolumn - The column to which to apply the uniquepublic String getTableCreationUniqueConstraintsFragment(Table table)
UniqueDelegateUniqueKey instances for the given table (see
Table.getUniqueKeyIterator() and generate the whole fragment for all
unique keys
Intended for Dialects which support unique constraint definitions, but just not in separate ALTER statements.getTableCreationUniqueConstraintsFragment in interface UniqueDelegatetable - The table for which to generate the unique constraints fragment", unique(col1, col2), unique( col20)". NOTE: The leading
comma is important!public String getAlterTableToAddUniqueKeyCommand(UniqueKey uniqueKey, String defaultCatalog, String defaultSchema)
UniqueDelegategetAlterTableToAddUniqueKeyCommand in interface UniqueDelegateuniqueKey - The UniqueKey instance. Contains all information about the columnsdefaultCatalog - The default catalogdefaultSchema - The default schemapublic String getAlterTableToDropUniqueKeyCommand(UniqueKey uniqueKey, String defaultCatalog, String defaultSchema)
UniqueDelegategetAlterTableToDropUniqueKeyCommand in interface UniqueDelegateuniqueKey - The UniqueKey instance. Contains all information about the columnsdefaultCatalog - The default catalogdefaultSchema - The default schemapublic String getColumnDefinitionUniquenessFragment(Column column)
UniqueDelegategetColumnDefinitionUniquenessFragment in interface UniqueDelegatecolumn - The column to which to apply the uniquepublic String getTableCreationUniqueConstraintsFragment(Table table)
UniqueDelegateUniqueKey instances for the given table (see
Table.getUniqueKeyIterator() and generate the whole fragment for all
unique keys
Intended for Dialects which support unique constraint definitions, but just not in separate ALTER statements.getTableCreationUniqueConstraintsFragment in interface UniqueDelegatetable - The table for which to generate the unique constraints fragment", unique(col1, col2), unique( col20)". NOTE: The leading
comma is important!public String getAlterTableToAddUniqueKeyCommand(UniqueKey uniqueKey)
UniqueDelegategetAlterTableToAddUniqueKeyCommand in interface UniqueDelegateuniqueKey - The UniqueKey instance. Contains all information about the columns, as well as
schema/catalogpublic String getAlterTableToDropUniqueKeyCommand(UniqueKey uniqueKey)
UniqueDelegategetAlterTableToDropUniqueKeyCommand in interface UniqueDelegateuniqueKey - The UniqueKey instance. Contains all information about the columns, as well as
schema/catalogCopyright © 2001-2015 Red Hat, Inc. All Rights Reserved.