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. |
interface |
AlterTableUsingIndexStep
The step in the
ALTER TABLE .. |
Modifier and Type | Method and Description |
---|---|
<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(java.lang.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(java.lang.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(java.lang.String constraint)
Add a
DROP CONSTRAINT clause to the ALTER TABLE
statement. |
AlterTableFinalStep |
AlterTableAlterStep.dropNotNull()
Make the column nullable.
|
AlterTableFinalStep |
AlterTableStep.renameTo(Name newName)
Add a
RENAME TO clause to the ALTER TABLE
statement. |
AlterTableFinalStep |
AlterTableStep.renameTo(java.lang.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 |
AlterTableAlterStep.setNotNull()
Make the column
NOT NULL . |
AlterTableFinalStep |
AlterTableRenameConstraintToStep.to(Constraint newName)
Specify a new constraint name.
|
AlterTableFinalStep |
AlterTableRenameColumnToStep.to(Field<?> newName)
Specify a new column name.
|
AlterTableFinalStep |
AlterTableRenameIndexToStep.to(Index newName)
Specify a new index name.
|
AlterTableFinalStep |
AlterTableRenameIndexToStep.to(Name newName)
Specify a new index name.
|
AlterTableFinalStep |
AlterTableRenameConstraintToStep.to(Name newName)
Specify a new constraint name.
|
AlterTableFinalStep |
AlterTableRenameColumnToStep.to(Name newName)
Specify a new column name.
|
AlterTableFinalStep |
AlterTableRenameIndexToStep.to(java.lang.String newName)
Specify a new index name.
|
AlterTableFinalStep |
AlterTableRenameConstraintToStep.to(java.lang.String newName)
Specify a new constraint name.
|
AlterTableFinalStep |
AlterTableRenameColumnToStep.to(java.lang.String newName)
Specify a new column name.
|
AlterTableFinalStep |
AlterTableUsingIndexStep.usingIndex(Index index)
Add the
USING INDEX clause to the statement. |
AlterTableFinalStep |
AlterTableUsingIndexStep.usingIndex(Name index)
Add the
USING INDEX clause to the statement. |
AlterTableFinalStep |
AlterTableUsingIndexStep.usingIndex(java.lang.String index)
Add the
USING INDEX clause to the statement. |
Copyright © 2018. All Rights Reserved.