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

Packages that use DBView
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 DBView in org.apache.empire.db
 

Methods in org.apache.empire.db that return DBView
 DBView DBView.DBViewColumn.getView()
           
 DBView DBDatabase.getView(java.lang.String name)
          Finds a DBView object by name.
 

Methods in org.apache.empire.db that return types with arguments of type DBView
 java.util.List<DBView> DBDatabase.getViews()
          Returns the tables which has been defined in the database.
 

Methods in org.apache.empire.db with parameters of type DBView
 boolean DBDatabase.addView(DBView view)
          Adds a DBView object to list of database views.
 

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

Method parameters in org.apache.empire.db.oracle with type arguments of type DBView
 void OracleDataDictionnary.checkDBViewDefinition(java.util.List<DBView> dbViews)