| Package | Description |
|---|---|
| com.healthmarketscience.jackcess.impl | |
| com.healthmarketscience.jackcess.util |
| Modifier and Type | Field and Description |
|---|---|
private java.util.List<Joiner> |
FKEnforcer._primaryJoinersChkDel |
private java.util.List<Joiner> |
FKEnforcer._primaryJoinersChkUp |
private java.util.List<Joiner> |
FKEnforcer._primaryJoinersDoDel |
private java.util.List<Joiner> |
FKEnforcer._primaryJoinersDoUp |
private java.util.List<Joiner> |
FKEnforcer._secondaryJoiners |
| Modifier and Type | Method and Description |
|---|---|
private static boolean |
FKEnforcer.anyUpdates(Joiner joiner,
java.lang.Object[] oldRow,
java.lang.Object[] newRow) |
private static void |
FKEnforcer.requireNoSecondaryValues(Joiner joiner,
java.lang.Object[] row) |
private static void |
FKEnforcer.requirePrimaryValues(Joiner joiner,
java.lang.Object[] row) |
private static void |
FKEnforcer.updateSecondaryValues(Joiner joiner,
java.lang.Object[] oldFromRow,
java.lang.Object[] newFromRow) |
| Modifier and Type | Method and Description |
|---|---|
static Joiner |
Joiner.create(Index fromIndex)
Creates a new Joiner based on the given index which backs a foreign-key
relationship.
|
static Joiner |
Joiner.create(Table fromTable,
Table toTable)
Creates a new Joiner based on the foreign-key relationship between the
given "from"" table and the given "to"" table.
|
Joiner |
Joiner.createReverse()
Creates a new Joiner that is the reverse of this Joiner (the "from" and
"to" tables are swapped).
|