void |
DBDatabase.createOrUpdateTable(DBRow newTableRow) |
Creates or updates a table on the database based on the DBRow.
|
void |
DBDatabaseHandle.createOrUpdateTable(DBRow newTableRow) |
|
void |
DBDatabaseImplementation.createOrUpdateTable(DBRow newTableRow) |
Creates or updates a table on the database based on the DBRow.
|
void |
DBDatabase.createTable(DBRow newTableRow) |
Creates a table on the database based on the DBRow.
|
List<DBAction> |
DBDatabase.createTable(DBRow newTableRow,
boolean includeForeignKeyClauses) |
|
void |
DBDatabaseCluster.createTable(DBRow newTableRow) |
|
DBActionList |
DBDatabaseCluster.createTable(DBRow newTableRow,
boolean includeForeignKeyClauses) |
|
void |
DBDatabaseHandle.createTable(DBRow newTableRow) |
|
List<DBAction> |
DBDatabaseHandle.createTable(DBRow newTableRow,
boolean includeForeignKeyClauses) |
|
void |
DBDatabaseImplementation.createTable(DBRow newTableRow) |
Creates a table on the database based on the DBRow.
|
DBActionList |
DBDatabaseImplementation.createTable(DBRow newTableRow,
boolean includeForeignKeyClauses) |
|
void |
DBDatabase.createTableNoExceptions(boolean includeForeignKeyClauses,
DBRow newTable) |
Creates tables on the database based on the DBRows.
|
void |
DBDatabase.createTableNoExceptions(DBRow newTable) |
Creates tables on the database based on the DBRows.
|
void |
DBDatabaseCluster.createTableNoExceptions(boolean includeForeignKeyClauses,
DBRow newTable) |
|
void |
DBDatabaseCluster.createTableNoExceptions(DBRow newTable) |
|
void |
DBDatabaseHandle.createTableNoExceptions(boolean includeForeignKeyClauses,
DBRow newTable) |
|
void |
DBDatabaseHandle.createTableNoExceptions(DBRow newTable) |
|
void |
DBDatabaseImplementation.createTableNoExceptions(boolean includeForeignKeyClauses,
DBRow newTable) |
Creates tables on the database based on the DBRows.
|
void |
DBDatabaseImplementation.createTableNoExceptions(DBRow newTable) |
Creates tables on the database based on the DBRows.
|
void |
DBDatabase.createTableWithForeignKeys(DBRow newTableRow) |
Creates a table on the database based on the DBRow, and creates the
required database foreign key constraints.
|
void |
DBDatabaseCluster.createTableWithForeignKeys(DBRow newTableRow) |
|
void |
DBDatabaseHandle.createTableWithForeignKeys(DBRow newTableRow) |
|
void |
DBDatabaseImplementation.createTableWithForeignKeys(DBRow newTableRow) |
Creates a table on the database based on the DBRow, and creates the
required database foreign key constraints.
|
void |
DBDatabase.dropDatabase(boolean doIt) |
The worst idea EVAH.
|
void |
DBDatabase.dropDatabase(String databaseName,
boolean doIt) |
The worst idea EVAH.
|
void |
DBDatabaseHandle.dropDatabase(boolean doIt) |
|
void |
DBDatabaseHandle.dropDatabase(String databaseName,
boolean doIt) |
|
void |
DBDatabaseImplementation.dropDatabase(boolean doIt) |
The worst idea EVAH.
|
void |
DBDatabaseImplementation.dropDatabase(String databaseName,
boolean doIt) |
The worst idea EVAH.
|
List<DBAction> |
DBDatabase.dropTable(DBRow newTableRow) |
|
DBActionList |
DBDatabaseCluster.dropTable(DBRow tableRow) |
|
List<DBAction> |
DBDatabaseHandle.dropTable(DBRow newTableRow) |
|
DBActionList |
DBDatabaseImplementation.dropTable(DBRow tableRow) |
Drops a table from the database.
|
<TR extends DBRow> void |
DBDatabase.dropTableIfExists(TR tableRow) |
Drops a table from the database.
|
<TR extends DBRow> void |
DBDatabaseCluster.dropTableIfExists(TR tableRow) |
|
<TR extends DBRow> void |
DBDatabaseHandle.dropTableIfExists(TR tableRow) |
|
<TR extends DBRow> void |
DBDatabaseImplementation.dropTableIfExists(TR tableRow) |
Drops a table from the database.
|
<TR extends DBRow> void |
DBDatabase.dropTableNoExceptions(TR tableRow) |
|
<TR extends DBRow> void |
DBDatabaseCluster.dropTableNoExceptions(TR tableRow) |
|
<TR extends DBRow> void |
DBDatabaseHandle.dropTableNoExceptions(TR tableRow) |
|
<TR extends DBRow> void |
DBDatabaseImplementation.dropTableNoExceptions(TR tableRow) |
Drops a table from the database.
|
<TR extends DBRow> void |
PostgresDB.dropTableNoExceptions(TR tableRow) |
|
void |
DBDatabaseImplementation.preventAccidentalDDLDuringTransaction(DBAction action) |
|