Uses of Interface
org.jooq.DeleteLimitStep
-
Packages that use DeleteLimitStep Package Description org.jooq This package contains jOOQ's public API. -
-
Uses of DeleteLimitStep in org.jooq
Subinterfaces of DeleteLimitStep in org.jooq Modifier and Type Interface Description interface
DeleteConditionStep<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 DeleteLimitStep Modifier and Type Method Description DeleteLimitStep<R>
DeleteOrderByStep. orderBy(int... fieldIndexes)
Add anORDER BY
clause to the query.DeleteLimitStep<R>
DeleteOrderByStep. orderBy(Collection<? extends OrderField<?>> fields)
Add anORDER BY
clause to the query.DeleteLimitStep<R>
DeleteOrderByStep. orderBy(OrderField<?>... fields)
Add anORDER BY
clause to the query.
-