Uses of Interface
org.jooq.UpdateSetMoreStep
-
Packages that use UpdateSetMoreStep Package Description org.jooq Theorg.jooq
package contains jOOQ's public API. -
-
Uses of UpdateSetMoreStep in org.jooq
Methods in org.jooq that return UpdateSetMoreStep Modifier and Type Method Description UpdateSetMoreStep<R>
UpdateSetStep. set(Map<?,?> map)
Set a value for a field in theUPDATE
statement.<T> UpdateSetMoreStep<R>
UpdateSetStep. set(Field<T> field, Field<T> value)
Set a value for a field in theUPDATE
statement.<T> UpdateSetMoreStep<R>
UpdateSetStep. set(Field<T> field, Select<? extends Record1<T>> value)
Set a value for a field in theUPDATE
statement.<T> UpdateSetMoreStep<R>
UpdateSetStep. set(Field<T> field, T value)
Set a value for a field in theUPDATE
statement.UpdateSetMoreStep<R>
UpdateSetStep. set(Record record)
Set a value for a field in theUPDATE
statement.<T> UpdateSetMoreStep<R>
UpdateSetStep. setNull(Field<T> field)
Set anull
value for a field in theUPDATE
statement.
-