Uses of Class
org.apache.empire.db.DBIndex

Packages that use DBIndex
org.apache.empire.db This package contains the core Empire-DB implementation classes. 
org.apache.empire.db.oracle This package contains classes necessary to support the Oracle database system. 
 

Uses of DBIndex in org.apache.empire.db
 

Subclasses of DBIndex in org.apache.empire.db
 class DBExpressionIndex
          This class handles the primary key for the tables.
 

Fields in org.apache.empire.db declared as DBIndex
protected  DBIndex DBRowSet.primaryKey
           
 

Methods in org.apache.empire.db that return DBIndex
 DBIndex DBTable.addIndex(DBIndex index)
          Adds an index.
 DBIndex DBTable.addIndex(String name, boolean unique, DBColumn[] columns)
          Adds an index.
 DBIndex DBTable.getPrimaryKey()
          Returns the primary key.
 

Methods in org.apache.empire.db that return types with arguments of type DBIndex
 List<DBIndex> DBTable.getIndexes()
          Returns the list of indexes (except the primary key).
 

Methods in org.apache.empire.db with parameters of type DBIndex
protected  void DBDDLGenerator.addCreateIndexStmt(DBIndex index, StringBuilder sql, DBSQLScript script)
           
 DBIndex DBTable.addIndex(DBIndex index)
          Adds an index.
protected  void DBDDLGenerator.createIndex(DBTable t, DBIndex idx, DBSQLScript script)
          Appends the DDL-Script for creating a single index to an SQL-Script
protected  void DBDDLGenerator.createTableIndexes(DBTable t, DBIndex pk, DBSQLScript script)
          Appends the DDL-Script for creating all indexes of table (except the primary key) to an SQL-Script
 

Uses of DBIndex in org.apache.empire.db.oracle
 

Methods in org.apache.empire.db.oracle with parameters of type DBIndex
 void DBCommandOracle.setOptimizerIndexHint(DBIndex index)
           
 



Copyright © 2008-2012 Apache Software Foundation. All Rights Reserved.