Package | Description |
---|---|
org.jooq |
The
org.jooq package contains jOOQ's public API. |
Modifier and Type | Interface and Description |
---|---|
interface |
ConstraintFinalStep
The final step in the
Constraint construction DSL API. |
interface |
ConstraintForeignKeyOnStep
The step in the
Constraint construction DSL API that allows for
adding ON DELETE and ON UPDATE clauses. |
interface |
ConstraintTypeStep
The step in the
Constraint construction DSL API that allows for
specifying the constraint type. |
Modifier and Type | Method and Description |
---|---|
Constraint |
Key.constraint()
Get this
KEY as a formal Constraint specification. |
Modifier and Type | Method and Description |
---|---|
AlterTableFinalStep |
AlterTableStep.add(Constraint constraint)
Add an
ADD CONSTRAINT clause to the ALTER TABLE
statement. |
CreateTableConstraintStep |
CreateTableConstraintStep.constraint(Constraint constraint)
Add a constraint to the table.
|
CreateTableConstraintStep |
CreateTableConstraintStep.constraints(Constraint... constraints)
Add constraints to the table.
|
AlterTableFinalStep |
AlterTableStep.drop(Constraint constraint)
Add a
DROP CONSTRAINT clause to the ALTER TABLE
statement. |
AlterTableRenameConstraintToStep |
AlterTableStep.renameConstraint(Constraint oldName)
Add a
RENAME CONSTRAINT clause to the ALTER TABLE
statement. |
AlterTableFinalStep |
AlterTableRenameConstraintToStep.to(Constraint newName)
Specify a new column name.
|
Modifier and Type | Method and Description |
---|---|
CreateTableConstraintStep |
CreateTableConstraintStep.constraints(Collection<? extends Constraint> constraints)
Add constraints to the table.
|
Copyright © 2016. All Rights Reserved.