Uses of Interface
org.jooq.UpdateReturningStep
-
Packages that use UpdateReturningStep Package Description org.jooq Theorg.jooq
package contains jOOQ's public API. -
-
Uses of UpdateReturningStep in org.jooq
Subinterfaces of UpdateReturningStep 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
UpdateLimitStep<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 UpdateReturningStep Modifier and Type Method Description UpdateReturningStep<R>
UpdateLimitStep. limit(Number numberOfRows)
Add aLIMIT
clause to the query.UpdateReturningStep<R>
UpdateLimitStep. limit(Param<? extends Number> numberOfRows)
Add aLIMIT
clause to the query using named parameters.
-