| Package | Description |
|---|---|
| net.aditsu.depeche |
| Modifier and Type | Class and Description |
|---|---|
class |
MutableTableInfo
Database table information that can be created from scratch and modified
|
| Modifier and Type | Method and Description |
|---|---|
TableInfo |
Record.getTableInfo()
Returns the table information for this record (if it was obtained from a table)
|
TableInfo |
Provider.getTableInfo(String table)
Returns the table information for a given table
|
TableInfo |
Provider.getTableInfo(String table,
Conn conn)
Returns the table information for a given table,
using the given connection if needed
|
TableInfo |
Provider.getTableInfo(Table t)
Returns the table information for a given table
|
TableInfo |
Provider.getTableInfo(Table t,
Conn conn)
Returns the table information for a given table,
using the given connection if needed
|
| Modifier and Type | Method and Description |
|---|---|
void |
Provider.createTable(TableInfo tinfo)
Creates a table given its information, with no constraints other than primary key
|
void |
Provider.createTable(TableInfo tinfo,
Conn conn)
Creates a table given its information, using a given connection, with no constraints other than primary key
|
String |
Provider.getCreateTableSQL(TableInfo tinfo)
Returns an SQL command for creating a table given its information, with no constraints other than primary key
|
String |
MySQLProvider.getCreateTableSQL(TableInfo tinfo) |