Uses of Interface
org.jooq.Identity
-
Packages that use Identity Package Description org.jooq Theorg.jooqpackage contains jOOQ's public API.org.jooq.impl Theorg.jooq.implpackage 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'sIDENTITYinformation, if available.Methods in org.jooq with parameters of type Identity Modifier and Type Method Description voidInsertQuery. setReturning(Identity<R,?> identity)Configure theINSERTorUPDATEstatement to return the generated identity value.voidStoreQuery. setReturning(Identity<R,?> identity)Configure theINSERTorUPDATEstatement to return the generated identity value.voidUpdateQuery. setReturning(Identity<R,?> identity)Configure theINSERTorUPDATEstatement 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()
-