| Package | Description |
|---|---|
| com.healthmarketscience.jackcess | |
| com.healthmarketscience.jackcess.impl |
| Modifier and Type | Method and Description |
|---|---|
java.util.List<Relationship> |
Database.getRelationships()
Finds all the relationships in the database in non-system tables.
|
java.util.List<Relationship> |
Database.getRelationships(Table table)
Finds all the relationships in the database for the given table.
|
java.util.List<Relationship> |
Database.getRelationships(Table table1,
Table table2)
Finds all the relationships in the database between the given tables.
|
java.util.List<Relationship> |
Database.getSystemRelationships()
Finds all the relationships in the database, including system
tables.
|
| Modifier and Type | Class and Description |
|---|---|
class |
RelationshipImpl
Information about a relationship between two tables in the database.
|
| Modifier and Type | Method and Description |
|---|---|
java.util.List<Relationship> |
DatabaseImpl.getRelationships() |
java.util.List<Relationship> |
DatabaseImpl.getRelationships(Table table) |
java.util.List<Relationship> |
DatabaseImpl.getRelationships(TableImpl table1,
TableImpl table2) |
java.util.List<Relationship> |
DatabaseImpl.getRelationships(Table table1,
Table table2) |
private java.util.List<Relationship> |
DatabaseImpl.getRelationshipsImpl(TableImpl table1,
TableImpl table2,
boolean includeSystemTables) |
java.util.List<Relationship> |
DatabaseImpl.getSystemRelationships() |
| Modifier and Type | Method and Description |
|---|---|
private void |
DatabaseImpl.collectRelationships(Cursor cursor,
TableImpl fromTable,
TableImpl toTable,
java.util.List<Relationship> relationships,
boolean includeSystemTables)
Finds the relationships matching the given from and to tables from the
given cursor and adds them to the given list.
|