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 |
---|---|
<T> AlterTableFinalStep |
AlterTableStep.add(Field<T> field,
DataType<T> 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 |
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 |
AlterTableDropStep.restrict()
Add a
RESTRICT clause to the
ALTER TABLE .. |
AlterTableFinalStep |
AlterTableAlterStep.set(DataType<?> type)
Specify a new column data type.
|
Copyright © 2015. All Rights Reserved.