public interface CreateTableOnCommitStep extends CreateTableFinalStep
Query
that can create tables.Modifier and Type | Method and Description |
---|---|
CreateTableFinalStep |
onCommitDeleteRows()
Add an
ON COMMIT DELETE ROWS clause. |
CreateTableFinalStep |
onCommitDrop()
Add an
ON COMMIT DROP clause. |
CreateTableFinalStep |
onCommitPreserveRows()
Add an
ON COMMIT PRESERVE ROWS clause. |
bind, bind, cancel, close, execute, executeAsync, executeAsync, getBindValues, getParam, getParams, getSQL, getSQL, getSQL, isExecutable, keepStatement, queryTimeout
attach, detach
@Support(value={ORACLE,POSTGRES}) CreateTableFinalStep onCommitDeleteRows()
ON COMMIT DELETE ROWS
clause.
This clause will only be rendered when used with a
GLOBAL TEMPORARY TABLE
DSL.createGlobalTemporaryTable(Table)
@Support(value={ORACLE,POSTGRES}) CreateTableFinalStep onCommitPreserveRows()
ON COMMIT PRESERVE ROWS
clause.
This clause will only be rendered when used with a
GLOBAL TEMPORARY TABLE
DSL.createGlobalTemporaryTable(Table)
@Support(value=POSTGRES) CreateTableFinalStep onCommitDrop()
ON COMMIT DROP
clause.
This clause will only be rendered when used with a
GLOBAL TEMPORARY TABLE
DSL.createGlobalTemporaryTable(Table)
Copyright © 2016. All Rights Reserved.