Package | Description |
---|---|
org.jooq |
The
org.jooq package contains jOOQ's public API. |
Modifier and Type | Interface and Description |
---|---|
interface |
AlterTableDropStep
The step in the
ALTER TABLE DSL used to DROP
columns. |
Modifier and Type | Method and Description |
---|---|
AlterTableFinalStep |
AlterTableStep.add(Constraint constraint)
Add an
ADD CONSTRAINT clause to the ALTER TABLE
statement. |
<T> AlterTableFinalStep |
AlterTableStep.add(Field<T> field,
DataType<T> type)
Add an
ADD COLUMN clause to the ALTER TABLE
statement. |
AlterTableFinalStep |
AlterTableStep.add(Name field,
DataType<?> type)
Add an
ADD COLUMN clause to the ALTER TABLE
statement. |
AlterTableFinalStep |
AlterTableStep.add(String field,
DataType<?> type)
Add an
ADD COLUMN clause to the ALTER TABLE
statement. |
<T> AlterTableFinalStep |
AlterTableStep.addColumn(Field<T> field,
DataType<T> type)
Add an
ADD COLUMN clause to the ALTER TABLE
statement. |
AlterTableFinalStep |
AlterTableStep.addColumn(Name field,
DataType<?> type)
Add an
ADD COLUMN clause to the ALTER TABLE
statement. |
AlterTableFinalStep |
AlterTableStep.addColumn(String field,
DataType<?> type)
Add an
ADD COLUMN clause to the ALTER TABLE
statement. |
AlterTableFinalStep |
AlterTableDropStep.cascade()
Add a
CASCADE clause to the
ALTER TABLE .. |
AlterTableFinalStep |
AlterTableAlterStep.defaultValue(Field<T> expression)
Specify a new column
DEFAULT . |
AlterTableFinalStep |
AlterTableAlterStep.defaultValue(T literal)
Specify a new column
DEFAULT . |
AlterTableFinalStep |
AlterTableStep.drop(Constraint constraint)
Add a
DROP CONSTRAINT clause to the ALTER TABLE
statement. |
AlterTableFinalStep |
AlterTableStep.dropConstraint(Name constraint)
Add a
DROP CONSTRAINT clause to the ALTER TABLE
statement. |
AlterTableFinalStep |
AlterTableStep.dropConstraint(String constraint)
Add a
DROP CONSTRAINT clause to the ALTER TABLE
statement. |
AlterTableFinalStep |
AlterTableStep.renameTo(Name newName)
Add a
RENAME TO clause to the ALTER TABLE
statement. |
AlterTableFinalStep |
AlterTableStep.renameTo(String newName)
Add a
RENAME TO clause to the ALTER TABLE
statement. |
AlterTableFinalStep |
AlterTableStep.renameTo(Table<?> newName)
Add a
RENAME TO clause to the ALTER TABLE
statement. |
AlterTableFinalStep |
AlterTableDropStep.restrict()
Add a
RESTRICT clause to the
ALTER TABLE .. |
AlterTableFinalStep |
AlterTableAlterStep.set(DataType<?> type)
Specify a new column data type.
|
AlterTableFinalStep |
AlterTableRenameConstraintToStep.to(Constraint newName)
Specify a new column name.
|
AlterTableFinalStep |
AlterTableRenameColumnToStep.to(Field<?> newName)
Specify a new column name.
|
AlterTableFinalStep |
AlterTableRenameConstraintToStep.to(Name newName)
Specify a new column name.
|
AlterTableFinalStep |
AlterTableRenameColumnToStep.to(Name newName)
Specify a new column name.
|
AlterTableFinalStep |
AlterTableRenameConstraintToStep.to(String newName)
Specify a new column name.
|
AlterTableFinalStep |
AlterTableRenameColumnToStep.to(String newName)
Specify a new column name.
|
Copyright © 2016. All Rights Reserved.