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 |
---|---|
AlterTableFinalStep |
AlterTableStep.add(Collection<? extends FieldOrConstraint> fields)
Add an
ADD clause with multiple columns or constraints to
the ALTER TABLE statement. |
AlterTableFinalStep |
AlterTableStep.add(Field<?> field)
Add an
ADD COLUMN 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(FieldOrConstraint... fields)
Add an
ADD clause with multiple columns or constraints 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. |
AlterTableFinalStep |
AlterTableStep.addColumn(Field<?> field)
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 |
AlterTableStep.addColumnIfNotExists(Field<?> field)
Add an
ADD COLUMN IF NOT EXISTS clause to the ALTER TABLE
statement. |
<T> AlterTableFinalStep |
AlterTableStep.addColumnIfNotExists(Field<T> field,
DataType<T> type)
Add an
ADD COLUMN IF NOT EXISTS clause to the ALTER TABLE
statement. |
AlterTableFinalStep |
AlterTableStep.addColumnIfNotExists(Name field,
DataType<?> type)
Add an
ADD COLUMN IF NOT EXISTS clause to the ALTER TABLE
statement. |
AlterTableFinalStep |
AlterTableStep.addColumnIfNotExists(String field,
DataType<?> type)
Add an
ADD COLUMN IF NOT EXISTS clause to the ALTER TABLE
statement. |
AlterTableFinalStep |
AlterTableStep.addIfNotExists(Field<?> field)
Add an
ADD COLUMN IF NOT EXISTS clause to the ALTER TABLE
statement. |
<T> AlterTableFinalStep |
AlterTableStep.addIfNotExists(Field<T> field,
DataType<T> type)
Add an
ADD COLUMN IF NOT EXISTS clause to the ALTER TABLE
statement. |
AlterTableFinalStep |
AlterTableStep.addIfNotExists(Name field,
DataType<?> type)
Add an
ADD COLUMN IF NOT EXISTS clause to the ALTER TABLE
statement. |
AlterTableFinalStep |
AlterTableStep.addIfNotExists(String field,
DataType<?> type)
Add an
ADD COLUMN IF NOT EXISTS clause to the ALTER TABLE
statement. |
AlterTableFinalStep |
AlterTableDropStep.cascade()
Add a
CASCADE clause to the
ALTER TABLE .. |
AlterTableFinalStep |
AlterTableStep.comment(Comment comment)
Specify a comment for a table using MySQL's syntax.
|
AlterTableFinalStep |
AlterTableStep.comment(String comment)
Specify a comment for a table using MySQL's syntax.
|
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 |
AlterTableAlterStep.dropNotNull()
Make the column nullable.
|
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 |
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(String newName)
Specify a new index name.
|
AlterTableFinalStep |
AlterTableRenameConstraintToStep.to(String newName)
Specify a new constraint name.
|
AlterTableFinalStep |
AlterTableRenameColumnToStep.to(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(String index)
Add the
USING INDEX clause to the statement. |
Copyright © 2019. All rights reserved.