Uses of Interface
org.jooq.UniqueKey
-
Packages that use UniqueKey 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 UniqueKey in org.jooq
Methods in org.jooq that return UniqueKey Modifier and Type Method Description UniqueKey<O>
ForeignKey. getKey()
The referencedKey
UniqueKey<R>
Table. getPrimaryKey()
Retrieve the table's primary keyMethods in org.jooq that return types with arguments of type UniqueKey Modifier and Type Method Description List<UniqueKey<R>>
Table. getKeys()
Retrieve all of the table's unique keys.List<UniqueKey<?>>
Meta. getPrimaryKeys()
Get all primary keys from the underlying meta data source.Methods in org.jooq with parameters of type UniqueKey Modifier and Type Method Description InsertOnConflictDoUpdateStep<R>
InsertOnDuplicateStep. onConflictOnConstraint(UniqueKey<R> constraint)
Add aON CONFLICT ON CONSTRAINT
clause to this INSERT statement.void
InsertQuery. onConflictOnConstraint(UniqueKey<R> constraint)
Whether use aON CONFLICT
orON CONFLICT ON CONSTRAINT
clause in thisINSERT
statement. -
Uses of UniqueKey in org.jooq.impl
Methods in org.jooq.impl that return UniqueKey Modifier and Type Method Description static <R extends Record>
UniqueKey<R>AbstractKeys. createUniqueKey(Table<R> table, String name, TableField<R,?>... fields)
Deprecated.- [#6875] [#7158] - 3.11.0 - Please re-generate your codestatic <R extends Record>
UniqueKey<R>AbstractKeys. createUniqueKey(Table<R> table, TableField<R,?>... fields)
Deprecated.- [#6875] [#7158] - 3.11.0 - Please re-generate your codestatic <R extends Record>
UniqueKey<R>Internal. createUniqueKey(Table<R> table, String name, TableField<R,?>... fields)
Factory method for unique keys.static <R extends Record>
UniqueKey<R>Internal. createUniqueKey(Table<R> table, TableField<R,?>... fields)
Factory method for unique keys.UniqueKey<R>
CustomTable. getPrimaryKey()
Methods in org.jooq.impl that return types with arguments of type UniqueKey Modifier and Type Method Description List<UniqueKey<R>>
CustomTable. getKeys()
Methods in org.jooq.impl with parameters of type UniqueKey Modifier and Type Method Description static <R extends Record,U extends Record>
ForeignKey<R,U>AbstractKeys. createForeignKey(UniqueKey<U> key, Table<R> table, String name, TableField<R,?>... fields)
Deprecated.- [#6875] [#7158] - 3.11.0 - Please re-generate your codestatic <R extends Record,U extends Record>
ForeignKey<R,U>AbstractKeys. createForeignKey(UniqueKey<U> key, Table<R> table, TableField<R,?>... fields)
Deprecated.- [#6875] [#7158] - 3.11.0 - Please re-generate your codestatic <R extends Record,U extends Record>
ForeignKey<R,U>Internal. createForeignKey(UniqueKey<U> key, Table<R> table, String name, TableField<R,?>... fields)
Factory method for foreign keys.static <R extends Record,U extends Record>
ForeignKey<R,U>Internal. createForeignKey(UniqueKey<U> key, Table<R> table, TableField<R,?>... fields)
Factory method for foreign keys.
-