All Methods Instance Methods Abstract Methods Concrete Methods
| Modifier and Type |
Method and Description |
String |
createCheckConstraint(Schema schema,
Table table,
Check check) |
String |
createForeignKeyConstraint(Schema schema,
Table table,
Fk fk,
Table toTable) |
String |
createIndex(Schema schema,
Table table,
Index index) |
String |
createSequence(Schema schema,
Table table) |
String |
createTable(Schema schema,
Table table) |
String |
createUniqueConstraint(Schema schema,
Table table,
Unique unique) |
String |
createView(Schema schema,
Table table,
Behavior create) |
String |
dropCheckConstraint(Schema schema,
Table table,
Check check) |
String |
dropForeignKeyConstraint(Schema schema,
Table table,
Fk fk,
Table toTable) |
String |
dropIndex(Schema schema,
Table table,
Index index) |
String |
dropSequence(Schema schema,
Table table) |
String |
dropTable(Schema schema,
Table table) |
String |
dropUniqueConstraint(Schema schema,
Table table,
Unique unique) |
String |
dropView(Schema schema,
Table table,
Behavior drop) |
String |
enableCheckConstraint(Schema schema,
Table table,
Check check,
boolean enable) |
String |
enableForeignKeyConstraint(Schema schema,
Table table,
Fk fk,
Table toTable,
boolean enable) |
String |
enableUniqueConstraint(Schema schema,
Table table,
Unique unique,
boolean enable) |
protected Column |
getColumn(Table table,
String name) |
abstract String |
getType(Table table,
Column column) |
protected boolean |
isFk(Table table,
Column column) |
protected boolean |
isPk(Table table,
Column column) |
String |
truncateTable(Schema schema,
Table table) |