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 |
---|---|
<T1,T2,T3,T4> |
ConstraintTypeStep.foreignKey(Field<T1> field1,
Field<T2> field2,
Field<T3> field3,
Field<T4> field4)
Add a
FOREIGN KEY clause to the CONSTRAINT . |
ConstraintForeignKeyReferencesStep4<?,?,?,?> |
ConstraintTypeStep.foreignKey(Name field1,
Name field2,
Name field3,
Name field4)
Add a
FOREIGN KEY clause to the CONSTRAINT . |
ConstraintForeignKeyReferencesStep4<?,?,?,?> |
ConstraintTypeStep.foreignKey(java.lang.String field1,
java.lang.String field2,
java.lang.String field3,
java.lang.String field4)
Add a
FOREIGN KEY clause to the CONSTRAINT . |
Modifier and Type | Method and Description |
---|---|
static <T1,T2,T3,T4> |
DSL.foreignKey(Field<T1> field1,
Field<T2> field2,
Field<T3> field3,
Field<T4> field4)
Add an unnamed (system named)
FOREIGN KEY clause to the CONSTRAINT . |
static ConstraintForeignKeyReferencesStep4<?,?,?,?> |
DSL.foreignKey(Name field1,
Name field2,
Name field3,
Name field4)
Add an unnamed (system named)
FOREIGN KEY clause to the CONSTRAINT . |
static ConstraintForeignKeyReferencesStep4<?,?,?,?> |
DSL.foreignKey(java.lang.String field1,
java.lang.String field2,
java.lang.String field3,
java.lang.String field4)
Add an unnamed (system named)
FOREIGN KEY clause to the CONSTRAINT . |
Copyright © 2018. All Rights Reserved.