public interface CreateTableOnCommitStep extends CreateTableCommentStep
Query
that can create tables.
XYZ*Step
types directly from client code
It is usually not recommended to reference any XYZ*Step
types
directly from client code, or assign them to local variables. When writing
dynamic SQL, creating a statement's components dynamically, and passing them
to the DSL API statically is usually a better choice. See the manual's
section about dynamic SQL for details: https://www.jooq.org/doc/latest/manual/sql-building/dynamic-sql.
Drawbacks of referencing the XYZ*Step
types directly:
Modifier and Type | Method and Description |
---|---|
CreateTableCommentStep |
onCommitDeleteRows()
Add an
ON COMMIT DELETE ROWS clause. |
CreateTableCommentStep |
onCommitDrop()
Add an
ON COMMIT DROP clause. |
CreateTableCommentStep |
onCommitPreserveRows()
Add an
ON COMMIT PRESERVE ROWS clause. |
comment, comment
storage, storage, storage, storage
bind, bind, cancel, close, execute, executeAsync, executeAsync, getBindValues, getParam, getParams, getSQL, getSQL, getSQL, isExecutable, keepStatement, queryTimeout
attach, configuration, detach
@Support(value={AURORA_POSTGRES,ORACLE,POSTGRES}) CreateTableCommentStep onCommitDeleteRows()
ON COMMIT DELETE ROWS
clause.
This clause will only be rendered when used with a
GLOBAL TEMPORARY TABLE
DSL.createGlobalTemporaryTable(Table)
@Support(value={AURORA_POSTGRES,ORACLE,POSTGRES}) CreateTableCommentStep onCommitPreserveRows()
ON COMMIT PRESERVE ROWS
clause.
This clause will only be rendered when used with a
GLOBAL TEMPORARY TABLE
DSL.createGlobalTemporaryTable(Table)
@Support(value={AURORA_POSTGRES,POSTGRES}) CreateTableCommentStep onCommitDrop()
ON COMMIT DROP
clause.
This clause will only be rendered when used with a
GLOBAL TEMPORARY TABLE
DSL.createGlobalTemporaryTable(Table)
Copyright © 2019. All rights reserved.