Package | Description |
---|---|
org.josef.jdbc |
jdbc related classes.
|
Modifier and Type | Method and Description |
---|---|
Constraint |
OracleDatabase.getActualConstraint(Connection connection,
String owner,
String name)
Gets the constraint owned by the supplied owner and with the supplied name, from the database.
|
Constraint |
DerbyDatabase.getActualConstraint(Connection connection,
String owner,
String name)
Gets the constraint owned by the supplied owner and with the supplied name, from the database.
|
abstract Constraint |
Database.getActualConstraint(Connection connection,
String owner,
String name)
Gets the constraint owned by the supplied owner and with the supplied name, from the database.
|
static Constraint |
Database.getConstraint(Connection connection,
String owner,
String name)
Gets the constraint owned by the supplied owner and with the supplied name, from the database.
|
static Constraint |
Database.getConstraint(DataSource dataSource,
String owner,
String name)
Gets the constraint owned by the supplied owner and with the supplied name, from the database.
|
Modifier and Type | Method and Description |
---|---|
List<Constraint> |
OracleDatabase.getActualConstraints(Connection connection,
String owner,
String tableName)
Gets the all constraints on the supplied tableName, owned by the supplied owner.
|
List<Constraint> |
DerbyDatabase.getActualConstraints(Connection connection,
String owner,
String tableName)
Gets all constraints on the supplied tableName, owned by the supplied owner.
|
abstract List<Constraint> |
Database.getActualConstraints(Connection connection,
String owner,
String tableName)
Gets all constraints on the supplied tableName, owned by the supplied owner.
|
static List<Constraint> |
Database.getConstraints(Connection connection,
String owner,
String tableName)
Gets all constraints on the supplied tableName, owned by the supplied owner.
|
static List<Constraint> |
Database.getConstraints(DataSource dataSource,
String owner,
String tableName)
Gets all constraints on the supplied tableName, owned by the supplied owner.
|
Copyright © 2008–2018. All rights reserved.