Uses of Interface
org.jooq.Identity
-
Packages that use Identity Package Description org.jooq Theorg.jooq
package contains jOOQ's public API.org.jooq.impl Theorg.jooq.impl
package contains jOOQ's implementation classes. -
-
Uses of Identity in org.jooq
Methods in org.jooq that return Identity Modifier and Type Method Description Identity<R,?>
Table. getIdentity()
Retrieve the table'sIDENTITY
information, if available.Methods in org.jooq with parameters of type Identity Modifier and Type Method Description void
InsertQuery. setReturning(Identity<R,?> identity)
Configure theINSERT
orUPDATE
statement to return the generated identity value.void
StoreQuery. setReturning(Identity<R,?> identity)
Configure theINSERT
orUPDATE
statement to return the generated identity value.void
UpdateQuery. setReturning(Identity<R,?> identity)
Configure theINSERT
orUPDATE
statement to return the generated identity value. -
Uses of Identity in org.jooq.impl
Methods in org.jooq.impl that return Identity Modifier and Type Method Description static <R extends Record,T>
Identity<R,T>AbstractKeys. createIdentity(Table<R> table, TableField<R,T> field)
Deprecated.- [#6875] [#7158] - 3.11.0 - Please re-generate your codestatic <R extends Record,T>
Identity<R,T>Internal. createIdentity(Table<R> table, TableField<R,T> field)
Factory method for identities.Identity<R,?>
CustomTable. getIdentity()
-