Uses of Interface
org.jooq.UpdateLimitStep
-
Packages that use UpdateLimitStep Package Description org.jooq Theorg.jooq
package contains jOOQ's public API. -
-
Uses of UpdateLimitStep in org.jooq
Subinterfaces of UpdateLimitStep in org.jooq Modifier and Type Interface Description interface
UpdateConditionStep<R extends Record>
This type is used for theUpdate
's DSL API.interface
UpdateFromStep<R extends Record>
This type is used for theUpdate
's DSL API.interface
UpdateOrderByStep<R extends Record>
This type is used for theUpdate
's DSL API.interface
UpdateSetMoreStep<R extends Record>
This type is used for theUpdate
's DSL API.interface
UpdateWhereStep<R extends Record>
This type is used for theUpdate
's DSL API.Methods in org.jooq that return UpdateLimitStep Modifier and Type Method Description UpdateLimitStep<R>
UpdateOrderByStep. orderBy(int... fieldIndexes)
Add anORDER BY
clause to the query.UpdateLimitStep<R>
UpdateOrderByStep. orderBy(Collection<? extends OrderField<?>> fields)
Add anORDER BY
clause to the query.UpdateLimitStep<R>
UpdateOrderByStep. orderBy(OrderField<?>... fields)
Add anORDER BY
clause to the query.
-