| Package | Description |
|---|---|
| org.jooq |
The
org.jooq package contains jOOQ's public API
This package mostly contains interfaces that are implemented by the
org.jooq.impl package. |
| org.jooq.impl |
The
org.jooq.impl package contains jOOQ's implementation classes
This package provides implementations for the jOOQ API from
org.jooq, whose interfaces are constructed mostly through the
Factory class, which hides implementation facts from
the public API |
| Modifier and Type | Method and Description |
|---|---|
List<ForeignKey<?,R>> |
UniqueKey.getReferences()
A list of all
ForeignKeys, referencing this
UniqueKey |
List<ForeignKey<R,?>> |
Table.getReferences()
Get the list of
FOREIGN KEY's of this table |
<O extends Record> |
UpdatableTable.getReferencesFrom(Table<O> other)
Get a list of
FOREIGN KEY's of a specific table, referencing
a this table. |
<O extends Record> |
Table.getReferencesTo(Table<O> other)
Get a list of
FOREIGN KEY's of this table, referencing a
specific table. |
| Modifier and Type | Method and Description |
|---|---|
void |
SelectQuery.addJoinOnKey(TableLike<?> table,
JoinType type,
ForeignKey<?,?> key)
Joins the existing table product to a new table using a foreign key
|
TableOnConditionStep |
TableOnStep.onKey(ForeignKey<?,?> key)
Join the table on a non-ambiguous foreign key relationship between the
two joined tables.
|
SelectJoinStep |
SelectOnStep.onKey(ForeignKey<?,?> key)
Join the table on a non-ambiguous foreign key relationship between the
two joined tables.
|
| 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
|
| Modifier and Type | Method and Description |
|---|---|
List<ForeignKey<R,?>> |
CustomTable.getReferences() |
<O extends Record> |
UpdatableTableImpl.getReferencesFrom(Table<O> other) |
Copyright © 2013. All Rights Reserved.