|
|||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use Table | |
org.codehaus.modello.generator.database.model | |
org.codehaus.modello.generator.database.sql |
Uses of Table in org.codehaus.modello.generator.database.model |
Methods in org.codehaus.modello.generator.database.model that return Table | |
Table |
Database.findTable(java.lang.String name)
Finds the table with the specified name, using case insensitive matching. |
Table |
Database.getTable(int index)
|
Methods in org.codehaus.modello.generator.database.model with parameters of type Table | |
void |
Database.addTable(Table table)
|
void |
Database.setTable(int index,
Table table)
|
Uses of Table in org.codehaus.modello.generator.database.sql |
Methods in org.codehaus.modello.generator.database.sql with parameters of type Table | |
void |
Db2Builder.dropTable(Table table)
|
protected void |
Db2Builder.printAutoIncrementColumn(Table table,
Column column)
|
void |
OracleBuilder.dropTable(Table table)
|
void |
OracleBuilder.createTable(Table table)
|
protected void |
OracleBuilder.printAutoIncrementColumn(Table table,
Column column)
|
protected void |
OracleBuilder.createSequence(Table table,
Column column)
Creates a sequence so that values can be auto incremented |
protected void |
OracleBuilder.createSequenceTrigger(Table table,
Column column)
Creates a trigger to auto-increment values |
void |
SybaseBuilder.dropTable(Table table)
|
protected void |
SybaseBuilder.printAutoIncrementColumn(Table table,
Column column)
|
void |
SqlBuilder.tableComment(Table table)
Outputs a comment for the table |
void |
SqlBuilder.dropTable(Table table)
Outputs the DDL to drop the table |
void |
SqlBuilder.createTable(Table table)
Outputs the DDL to create the table along with any constraints |
void |
SqlBuilder.createColumn(Table table,
Column column)
Outputs the DDL to add a column to a table. |
protected void |
SqlBuilder.writeColumnTypes(Table table)
Writes the column types for a table |
protected void |
SqlBuilder.writePrimaryKeys(Table table)
Writes the primary key constraints inside a create table () clause. |
protected void |
SqlBuilder.writePrimaryKeysAlterTable(Table table)
Writes the primary key constraints as an AlterTable clause. |
protected void |
SqlBuilder.writeForeignKeys(Table table)
Writes the foreign key constraints inside a create table () clause. |
protected void |
SqlBuilder.writeForeignKeysAlterTable(Table table)
Writes the foreign key constraints as an AlterTable clause. |
protected void |
SqlBuilder.writeForeignKeyAlterTable(Table table,
ForeignKey key)
|
protected void |
SqlBuilder.writeIndexes(Table table)
Writes the indexes. |
protected void |
SqlBuilder.writeIndex(Table table,
Index index)
Writes one index for a table |
protected void |
SqlBuilder.writeEmbeddedIndexes(Table table)
Writes the indexes embedded within the create table statement. |
protected void |
SqlBuilder.printAutoIncrementColumn(Table table,
Column column)
Outputs the fact that this column is an auto increment column. |
void |
SqlBuilder.alterColumn(Table table,
Column column,
boolean add)
Generates the alter statement to add or modify a single column on a table. |
void |
SqlBuilder.dropColumn(Table table,
Column column)
Generates the statement to drop an column from a table. |
protected void |
SqlBuilder.writeAlterHeader(Table table)
Generates the first part of the ALTER TABLE statement including the table name. |
void |
SqlBuilder.dropIndex(Table table,
Index index)
Generates the statement to drop an index from the database. |
protected void |
PostgreSqlBuilder.printAutoIncrementColumn(Table table,
Column column)
|
void |
PostgreSqlBuilder.createColumn(Table table,
Column column)
Outputs the DDL to add a column to a table. |
void |
MckoiSqlBuilder.dropTable(Table table)
|
protected void |
MckoiSqlBuilder.printAutoIncrementColumn(Table table,
Column column)
|
void |
MySqlBuilder.dropTable(Table table)
|
protected void |
MySqlBuilder.printAutoIncrementColumn(Table table,
Column column)
|
void |
MSSqlBuilder.dropTable(Table table)
|
protected void |
MSSqlBuilder.printAutoIncrementColumn(Table table,
Column column)
|
protected void |
AxionBuilder.writePrimaryKeys(Table table)
|
protected void |
AxionBuilder.writeForeignKeys(Table table)
|
protected void |
AxionBuilder.printAutoIncrementColumn(Table table,
Column column)
|
void |
AxionBuilder.createColumn(Table table,
Column column)
Outputs the DDL to add a column to a table. |
|
|||||||||||
PREV NEXT | FRAMES NO FRAMES |