Uses of Interface
ch.sahits.model.db.IDataBaseTable

Packages that use IDataBaseTable
ch.sahits.codegen.java.input   
ch.sahits.codegen.java.input.db   
ch.sahits.model.db   
ch.sahits.model.java.db   
 

Uses of IDataBaseTable in ch.sahits.codegen.java.input
 

Methods in ch.sahits.codegen.java.input with parameters of type IDataBaseTable
protected abstract  boolean SQLCreateScriptInput.isAutogenKey(java.lang.String fieldName, IDataBaseTable dbt)
          Check whether the field name is an autogenerated key.
 

Uses of IDataBaseTable in ch.sahits.codegen.java.input.db
 

Methods in ch.sahits.codegen.java.input.db with parameters of type IDataBaseTable
protected  boolean SQLServerCreateScriptInputParser.isAutogenKey(java.lang.String fieldName, IDataBaseTable dbt)
          Pseudo implementation since the auto generated key is set in the method SQLServerCreateScriptInputParser.parseField(StringTokenizer, String, DataBaseTable)
protected  boolean MySQLCreateScriptInputParser.isAutogenKey(java.lang.String fieldName, IDataBaseTable dbt)
          Pseudo implementation since the information of the auto generated key is handled within the MySQLCreateScriptInputParser.parseField(StringTokenizer, String, DataBaseTable) method
protected  boolean OracleSQLCreateScriptInputParser.isAutogenKey(java.lang.String fieldName, IDataBaseTable dbt)
          Check if a trigger is defined for the field on insert that referres to a sequence that fills the field true if such a trigger exists.
 

Uses of IDataBaseTable in ch.sahits.model.db
 

Subinterfaces of IDataBaseTable in ch.sahits.model.db
 interface IConnectableDataBaseTable
          This interface combines the Description of a database table with the information to its accessability
 

Methods in ch.sahits.model.db that return IDataBaseTable
 IDataBaseTable DataBaseTableIndex.getTable()
          Retrieves the table object this index belongs to
 

Methods in ch.sahits.model.db with parameters of type IDataBaseTable
 void DataBaseTableIndex.setTable(IDataBaseTable _table)
          Set the table object
 

Uses of IDataBaseTable in ch.sahits.model.java.db
 

Classes in ch.sahits.model.java.db that implement IDataBaseTable
 class DataBaseTable
          This bean represents the meta data of a table.