Uses of Interface
org.jooq.DeleteReturningStep
-
Packages that use DeleteReturningStep Package Description org.jooq Theorg.jooq
package contains jOOQ's public API. -
-
Uses of DeleteReturningStep in org.jooq
Subinterfaces of DeleteReturningStep in org.jooq Modifier and Type Interface Description interface
DeleteConditionStep<R extends Record>
This type is used for theDelete
's DSL API.interface
DeleteLimitStep<R extends Record>
This type is used for theDelete
's DSL API.interface
DeleteOrderByStep<R extends Record>
This type is used for theDelete
's DSL API.interface
DeleteUsingStep<R extends Record>
This type is used for theDelete
's DSL API.interface
DeleteWhereStep<R extends Record>
This type is used for theDelete
's DSL API.Methods in org.jooq that return DeleteReturningStep Modifier and Type Method Description DeleteReturningStep<R>
DeleteLimitStep. limit(Number numberOfRows)
Add aLIMIT
clause to the query.DeleteReturningStep<R>
DeleteLimitStep. limit(Param<? extends Number> numberOfRows)
Add aLIMIT
clause to the query using named parameters.
-