Package | Description |
---|---|
org.jooq |
The
org.jooq package contains jOOQ's public API. |
org.jooq.impl |
The
org.jooq.impl package contains jOOQ's implementation classes. |
Modifier and Type | Method and Description |
---|---|
UniqueKey<O> |
ForeignKey.getKey()
The referenced
Key |
UniqueKey<R> |
Table.getPrimaryKey()
Retrieve the table's primary key
|
Modifier and Type | Method and 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
DatabaseMetaData . |
Modifier and Type | Method and Description |
---|---|
protected static <R extends Record> |
AbstractKeys.createUniqueKey(Table<R> table,
TableField<R,?>... fields)
Factory method for unique keys
|
UniqueKey<R> |
CustomTable.getPrimaryKey() |
Modifier and Type | Method and Description |
---|---|
List<UniqueKey<R>> |
CustomTable.getKeys() |
Modifier and Type | Method and Description |
---|---|
protected static <R extends Record,U extends Record> |
AbstractKeys.createForeignKey(UniqueKey<U> key,
Table<R> table,
TableField<R,?>... fields)
Factory method for foreign keys
|
Copyright © 2014. All Rights Reserved.