Uses of Class
ch.sahits.model.db.DataBaseTableIndex

Packages that use DataBaseTableIndex
ch.sahits.codegen.java.input   
ch.sahits.codegen.java.input.db   
ch.sahits.codegen.java.model.util   
ch.sahits.model.db   
ch.sahits.model.java.db   
ch.sahits.model.php.db   
 

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

Methods in ch.sahits.codegen.java.input that return DataBaseTableIndex
protected  DataBaseTableIndex SQLCreateScriptInput.parseIndex(java.util.StringTokenizer st, java.lang.String lastToken, DataBaseTable table)
          Parse the script for the index definition.
 

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

Methods in ch.sahits.codegen.java.input.db that return DataBaseTableIndex
protected  DataBaseTableIndex MySQLCreateScriptInputParser.parseIndex(java.util.StringTokenizer st, java.lang.String lastToken, DataBaseTable table)
          Parse the script for the index definition.
 

Methods in ch.sahits.codegen.java.input.db with parameters of type DataBaseTableIndex
protected  void DBConnection.addFields2Index(DataBaseTable struct, DataBaseTableIndex index, java.lang.String consteintName)
          Add fields to the index model
 

Uses of DataBaseTableIndex in ch.sahits.codegen.java.model.util
 

Methods in ch.sahits.codegen.java.model.util with parameters of type DataBaseTableIndex
 java.lang.String SQLProvider.getWhereClause(DataBaseTableIndex index, java.util.List<Pair> values)
          Create the partial String of the where clause based on the index and the provided values
 

Uses of DataBaseTableIndex in ch.sahits.model.db
 

Methods in ch.sahits.model.db that return DataBaseTableIndex
 DataBaseTableIndex BasicDataBaseTable.findIndex(java.lang.String indexName)
           
 DataBaseTableIndex IBasicDataBaseTable.findIndex(java.lang.String indexName)
          Find the index with the name indexName
 DataBaseTableIndex BasicDataBaseTable.findPrimaryIndex()
           
 DataBaseTableIndex IBasicDataBaseTable.findPrimaryIndex()
          Find the index which's name start with PK_.
 

Methods in ch.sahits.model.db that return types with arguments of type DataBaseTableIndex
 java.util.List<DataBaseTableIndex> BasicDataBaseTable.forginKeys()
           
 java.util.List<DataBaseTableIndex> IBasicDataBaseTable.forginKeys()
          Retrieve a list of all indexes that represent a forgin key
 java.util.List<DataBaseTableIndex> BasicDataBaseTable.getIndexes()
           
 java.util.List<DataBaseTableIndex> IBasicDataBaseTable.getIndexes()
          Retrieve a list of all table indexes
 java.util.List<DataBaseTableIndex> IDataBaseTable.getIndexes()
          Retrieve a list of all table indexes
 java.util.List<DataBaseTableIndex> BasicDataBaseTable.otherKeys()
           
 java.util.List<DataBaseTableIndex> IBasicDataBaseTable.otherKeys()
          Retrieve a list of all indexes that represent an index that is not a primary key nor a forgin key nor a unique index
 java.util.List<DataBaseTableIndex> BasicDataBaseTable.uniqueKeys()
           
 java.util.List<DataBaseTableIndex> IBasicDataBaseTable.uniqueKeys()
          Retrieve a list of all indexes that represent a unique key
 java.util.List<DataBaseTableIndex> IDataBaseTable.uniqueKeys()
          Retrieve a list of all indexes that represent a unique key
 

Methods in ch.sahits.model.db with parameters of type DataBaseTableIndex
 void BasicDataBaseTable.add(DataBaseTableIndex ind)
          Add a database index.
 void IDataBaseTable.add(DataBaseTableIndex ind)
          Add a database index.
 void BasicDataBaseTable.setFieldAt(int index, DataBaseTableIndex ind)
          Set a database index at position index
 

Method parameters in ch.sahits.model.db with type arguments of type DataBaseTableIndex
 void BasicDataBaseTable.setIndexes(java.util.List<DataBaseTableIndex> _indexes)
          Set the DataBaseTableIndex s
 void IDataBaseTable.setIndexes(java.util.List<DataBaseTableIndex> _indexes)
          Set the DataBaseTableIndex s
 

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

Methods in ch.sahits.model.java.db that return DataBaseTableIndex
 DataBaseTableIndex DataBaseTable.findIndex(java.lang.String indexName)
          Find the index with the name indexName
 DataBaseTableIndex DataBaseTable.findPrimaryIndex()
          Find the index which's name start with PK_.
 

Methods in ch.sahits.model.java.db that return types with arguments of type DataBaseTableIndex
 java.util.List<DataBaseTableIndex> DataBaseTable.forginKeys()
           
 java.util.List<DataBaseTableIndex> DataBaseTable.getIndexes()
          Retrieve a list of all table indexes
 java.util.List<DataBaseTableIndex> DataBaseTable.otherKeys()
           
 java.util.List<DataBaseTableIndex> DataBaseTable.uniqueKeys()
          Retrieve a list of all indexes that represent a unique key
 

Methods in ch.sahits.model.java.db with parameters of type DataBaseTableIndex
 void DataBaseTable.add(DataBaseTableIndex ind)
          Add a database index.
 void DataBaseTable.setFieldAt(int index, DataBaseTableIndex ind)
          Set a database index at position index
 

Method parameters in ch.sahits.model.java.db with type arguments of type DataBaseTableIndex
 void DataBaseTable.setIndexes(java.util.List<DataBaseTableIndex> _indexes)
          Set the DataBaseTableIndex s
 

Uses of DataBaseTableIndex in ch.sahits.model.php.db
 

Methods in ch.sahits.model.php.db with parameters of type DataBaseTableIndex
 IPHPClassDeclarationBuilder IPHPClassDeclarationBuilder.addIndex(DataBaseTableIndex ind)
          Add a database index.