-
- All Superinterfaces:
Attachable
,AutoCloseable
,DDLQuery
,Flow.Publisher<Integer>
,org.reactivestreams.Publisher<Integer>
,Query
,QueryPart
,RowCountQuery
,Serializable
,Statement
- All Known Subinterfaces:
TruncateCascadeStep<R>
,TruncateFinalStep<R>
,TruncateIdentityStep<R>
public interface Truncate<R extends Record> extends DDLQuery
ATRUNCATE
statement.Example:
// Assuming import static org.jooq.impl.DSL.*; using(configuration).truncate(ACTOR).execute();
Instances can be created using
DSL.truncate(Table)
, orDSLContext.truncate(Table)
and overloads.- Author:
- Lukas Eder
-
-
Method Summary
-
Methods inherited from interface org.jooq.Attachable
attach, configuration, detach
-
Methods inherited from interface java.util.concurrent.Flow.Publisher
subscribe
-
Methods inherited from interface org.jooq.Query
bind, bind, cancel, close, execute, executeAsync, executeAsync, getBindValues, getParam, getParams, getSQL, getSQL, getSQL, isExecutable, keepStatement, poolable, queryTimeout
-
-