Uses of Class
org.codehaus.modello.generator.database.model.Table

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 SqlBuilder.alterColumn(Table table, Column column, boolean add)
          Generates the alter statement to add or modify a single column on a table.
 void PostgreSqlBuilder.createColumn(Table table, Column column)
          Outputs the DDL to add a column to a table.
 void AxionBuilder.createColumn(Table table, Column column)
          Outputs the DDL to add a column to a table.
 void SqlBuilder.createColumn(Table table, Column column)
          Outputs the DDL to add a column to a table.
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 SqlBuilder.createTable(Table table)
          Outputs the DDL to create the table along with any constraints
 void OracleBuilder.createTable(Table table)
           
 void SqlBuilder.dropColumn(Table table, Column column)
          Generates the statement to drop an column from a table.
 void SqlBuilder.dropIndex(Table table, Index index)
          Generates the statement to drop an index from the database.
 void MckoiSqlBuilder.dropTable(Table table)
           
 void MSSqlBuilder.dropTable(Table table)
           
 void SqlBuilder.dropTable(Table table)
          Outputs the DDL to drop the table
 void MySqlBuilder.dropTable(Table table)
           
 void OracleBuilder.dropTable(Table table)
           
 void SybaseBuilder.dropTable(Table table)
           
 void Db2Builder.dropTable(Table table)
           
protected  void PostgreSqlBuilder.printAutoIncrementColumn(Table table, Column column)
           
protected  void MckoiSqlBuilder.printAutoIncrementColumn(Table table, Column column)
           
protected  void AxionBuilder.printAutoIncrementColumn(Table table, Column column)
           
protected  void MSSqlBuilder.printAutoIncrementColumn(Table table, Column column)
           
protected  void SqlBuilder.printAutoIncrementColumn(Table table, Column column)
          Outputs the fact that this column is an auto increment column.
protected  void MySqlBuilder.printAutoIncrementColumn(Table table, Column column)
           
protected  void OracleBuilder.printAutoIncrementColumn(Table table, Column column)
           
protected  void SybaseBuilder.printAutoIncrementColumn(Table table, Column column)
           
protected  void Db2Builder.printAutoIncrementColumn(Table table, Column column)
           
 void SqlBuilder.tableComment(Table table)
          Outputs a comment for the table
protected  void SqlBuilder.writeAlterHeader(Table table)
          Generates the first part of the ALTER TABLE statement including the table name.
protected  void SqlBuilder.writeColumnTypes(Table table)
          Writes the column types for a table
protected  void SqlBuilder.writeEmbeddedIndexes(Table table)
          Writes the indexes embedded within the create table statement.
protected  void SqlBuilder.writeForeignKeyAlterTable(Table table, ForeignKey key)
           
protected  void AxionBuilder.writeForeignKeys(Table table)
           
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.writeIndex(Table table, Index index)
          Writes one index for a table
protected  void SqlBuilder.writeIndexes(Table table)
          Writes the indexes.
protected  void AxionBuilder.writePrimaryKeys(Table 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.
 



Copyright © 2001-2007 Codehaus. All Rights Reserved.