Uses of Class
org.apache.torque.engine.database.model.Table

Packages that use Table
org.apache.torque.engine.database.model   
org.apache.torque.engine.database.transform   
 

Uses of Table in org.apache.torque.engine.database.model
 

Fields in org.apache.torque.engine.database.model declared as Table
private  Table Index.parentTable
           
private  Table IdMethodParameter.parentTable
           
private  Table ForeignKey.parentTable
           
private  Table Column.parentTable
           
 

Methods in org.apache.torque.engine.database.model that return Table
 Table Index.getTable()
          Get the parent Table of the index
 Table IdMethodParameter.getTable()
          Get the parent Table of the id method
 Table ForeignKey.getTable()
          Get the parent Table of the foreign key
 Table Column.getTable()
          Get the parent Table of the column
 Table[] Database.getTables()
          Return an array of all tables
 Table Database.getTable(java.lang.String name)
          Return the table with the specified name.
 Table Database.getTableByJavaName(java.lang.String javaName)
          Return the table with the specified javaName.
 Table Database.addTable(org.xml.sax.Attributes attrib)
          An utility method to add a new table from an xml attribute.
 

Methods in org.apache.torque.engine.database.model with parameters of type Table
 void Index.setTable(Table parent)
          Set the parent Table of the index
 void IdMethodParameter.setTable(Table parent)
          Set the parent Table of the id method
 void ForeignKey.setTable(Table parent)
          Set the parent Table of the foreign key
 void Column.setTable(Table parent)
          Set the parent Table of the column
 void Database.addTable(Table tbl)
          Add a table to the list and sets the Database property to this Database
 

Constructors in org.apache.torque.engine.database.model with parameters of type Table
Index(Table table, java.util.List indexColumns)
          Creates a new instance for the list of columns composing an index.
 

Uses of Table in org.apache.torque.engine.database.transform
 

Fields in org.apache.torque.engine.database.transform declared as Table
private  Table XmlToData.DataRow.table
           
private  Table XmlToAppData.currTable
           
 

Methods in org.apache.torque.engine.database.transform that return Table
 Table XmlToData.DataRow.getTable()
           
 

Methods in org.apache.torque.engine.database.transform with parameters of type Table
private  void SQLToAppData.Create_Table_Column(Table tbl)
          Parses column information between the braces of a CREATE TABLE () sql statement.
private  void SQLToAppData.Create_Table_Column_Primary(Table tbl)
          Parses PRIMARY KEY (FOO,BAR) statement
private  void SQLToAppData.Create_Table_Column_Unique(Table tbl)
          Parses UNIQUE (NAME,FOO,BAR) statement
private  void SQLToAppData.Create_Table_Column_Foreign(Table tbl)
          Parses FOREIGN KEY (BAR) REFERENCES TABLE (BAR) statement
private  void SQLToAppData.Create_Table_Column_Data(Table tbl)
          Parse the data definition of the column statement.
 

Constructors in org.apache.torque.engine.database.transform with parameters of type Table
XmlToData.DataRow(Table table, java.util.List columnValues)
           
 



Copyright © 1999-2003 Apache Software Foundation. All Rights Reserved.