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

Packages that use DBDatabase
org.apache.empire.db This package contains the core Empire-DB implementation classes. 
org.apache.empire.db.expr.column This package contains SQL-generator classes for column expressions. 
org.apache.empire.db.expr.compare This package contains SQL-generator classes for compare expressions used in the where and having clause. 
org.apache.empire.db.expr.join This package contains SQL-generator classes for join expressions used in the from clause. 
org.apache.empire.db.expr.set This package contains SQL-generator classes for set expressions used in the set clause. 
org.apache.empire.db.hsql This package contains classes necessary to support the HSQLDB database system. 
org.apache.empire.db.mysql This package contains classes necessary to support the MySQL database system. 
org.apache.empire.db.oracle This package contains classes necessary to support the Oracle database system. 
org.apache.empire.db.sqlserver This package contains classes necessary to support the Microsoft SQL-Server database system. 
 

Uses of DBDatabase in org.apache.empire.db
 

Methods in org.apache.empire.db that return DBDatabase
 DBDatabase DBRowSet.getDatabase()
          Returns the current DBDatabase object.
 DBDatabase DBRelation.getDatabase()
           
 DBDatabase DBRecord.getDatabase()
          Returns the current DBDatabase object.
 DBDatabase DBReader.getDatabase()
          Returns the current DBDatabase object.
abstract  DBDatabase DBObject.getDatabase()
          Returns the database object to which this object belongs to.
 DBDatabase DBIndex.getDatabase()
           
 DBDatabase DBDatabase.getDatabase()
           
 DBDatabase DBCommand.getDatabase()
          Returns the current DBDatabase object.
 DBDatabase DBCommand.DBCmdParameter.getDatabase()
           
 DBDatabase DBCombinedCmd.getDatabase()
          Returns the current DBDatabase object.
 DBDatabase DBColumn.getDatabase()
           
 

Methods in org.apache.empire.db with parameters of type DBDatabase
 boolean DBDatabaseDriver.checkDatabase(DBDatabase db, java.lang.String owner, java.sql.Connection conn)
          Checks the database whether or not it is consistent with the description.
abstract  DBCommand DBDatabaseDriver.createCommand(DBDatabase db)
          This function creates a DBCommand derived object this database
abstract  java.lang.Object DBDatabaseDriver.getNextSequenceValue(DBDatabase db, java.lang.String SeqName, int minValue, java.sql.Connection conn)
          Returns the next value of a named sequence The numbers are used for fields of type DBExpr.DT_AUTOINC.
 java.lang.Object DBDatabaseDriver.getPostInsertAutoIncValue(DBDatabase db, java.sql.Connection conn)
          Returns the value of an AutoIncrement field for the last inserted record.
 

Constructors in org.apache.empire.db with parameters of type DBDatabase
DBDatabaseDriver.DBSeqTable(java.lang.String tableName, DBDatabase db)
          Constructor
DBRelation(DBDatabase db, java.lang.String name, DBRelation.DBReference[] references)
          Creates a DBReferene object for a foreing key relation.
DBRowSet(DBDatabase db)
          Constructs a DBRecord object set the current database object.
DBTable(java.lang.String name, DBDatabase db)
          Construct a new DBTable object set the specified parameters to this object and add this object to the current database.
DBView(java.lang.String name, DBDatabase db)
          Creates a view object for a given view in the database.
DBView(java.lang.String name, DBDatabase db, boolean isUpdateable)
          Creates a view object for a given view in the database.
 

Uses of DBDatabase in org.apache.empire.db.expr.column
 

Fields in org.apache.empire.db.expr.column declared as DBDatabase
 DBDatabase DBValueExpr.db
           
 

Methods in org.apache.empire.db.expr.column that return DBDatabase
 DBDatabase DBValueExpr.getDatabase()
          Returns the current DBDatabase object.
 DBDatabase DBCountExpr.getDatabase()
          Returns the current DBDatabase object.
 DBDatabase DBConcatExpr.getDatabase()
          Returns the current DBDatabase object.
 DBDatabase DBCaseExpr.getDatabase()
           
 DBDatabase DBCalcExpr.getDatabase()
          Returns the current DBDatabase object.
 DBDatabase DBAliasExpr.getDatabase()
          Returns the current DBDatabase object.
 DBDatabase DBAbstractFuncExpr.getDatabase()
          Returns the current DBDatabase object.
 

Constructors in org.apache.empire.db.expr.column with parameters of type DBDatabase
DBValueExpr(DBDatabase db, java.lang.Object value, DataType type)
          Constructs a new DBValueExpr object set the specified parameters to this object.
 

Uses of DBDatabase in org.apache.empire.db.expr.compare
 

Methods in org.apache.empire.db.expr.compare that return DBDatabase
 DBDatabase DBExistsExpr.getDatabase()
          Returns the current DBDatabase object.
 DBDatabase DBCompareNotExpr.getDatabase()
          Returns the current DBDatabase object.
 DBDatabase DBCompareColExpr.getDatabase()
          Returns the current DBDatabase object.
 DBDatabase DBCompareAndOrExpr.getDatabase()
          Returns the current DBDatabase object.
 

Uses of DBDatabase in org.apache.empire.db.expr.join
 

Methods in org.apache.empire.db.expr.join that return DBDatabase
 DBDatabase DBJoinExpr.getDatabase()
          Returns the current DBDatabase object.
 

Uses of DBDatabase in org.apache.empire.db.expr.set
 

Methods in org.apache.empire.db.expr.set that return DBDatabase
 DBDatabase DBSetExpr.getDatabase()
          Returns the current DBDatabase object.
 

Uses of DBDatabase in org.apache.empire.db.hsql
 

Methods in org.apache.empire.db.hsql with parameters of type DBDatabase
 DBCommand DBDatabaseDriverHSql.createCommand(DBDatabase db)
          Creates a new HSQLDB command object.
 java.lang.Object DBDatabaseDriverHSql.getNextSequenceValue(DBDatabase db, java.lang.String seqName, int minValue, java.sql.Connection conn)
           
 

Constructors in org.apache.empire.db.hsql with parameters of type DBDatabase
DBDatabaseDriverHSql.DBCommandHSql(DBDatabase db)
           
 

Uses of DBDatabase in org.apache.empire.db.mysql
 

Methods in org.apache.empire.db.mysql with parameters of type DBDatabase
 boolean DBDatabaseDriverMySQL.attachDatabase(DBDatabase db, java.sql.Connection conn)
           
 DBCommand DBDatabaseDriverMySQL.createCommand(DBDatabase db)
          Creates a new MySQL command object.
 java.lang.Object DBDatabaseDriverMySQL.getNextSequenceValue(DBDatabase db, java.lang.String seqName, int minValue, java.sql.Connection conn)
           
 java.lang.Object DBDatabaseDriverMySQL.getPostInsertAutoIncValue(DBDatabase db, java.sql.Connection conn)
           
 

Constructors in org.apache.empire.db.mysql with parameters of type DBDatabase
DBDatabaseDriverMySQL.DBCommandMySQL(DBDatabase db)
           
 

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

Subclasses of DBDatabase in org.apache.empire.db.oracle
 class OracleSYSDatabase
          Represents the data model of the system tables.
 

Methods in org.apache.empire.db.oracle with parameters of type DBDatabase
 boolean DBDatabaseDriverOracle.checkDatabase(DBDatabase db, java.lang.String owner, java.sql.Connection conn)
          Checks whether the database defintion matches the real database structure.
 DBCommand DBDatabaseDriverOracle.createCommand(DBDatabase db)
          Creates a new Oracle command object.
 java.lang.Object DBDatabaseDriverOracle.getNextSequenceValue(DBDatabase db, java.lang.String seqName, int minValue, java.sql.Connection conn)
           
 

Constructors in org.apache.empire.db.oracle with parameters of type DBDatabase
DBCommandOracle(DBDatabase db)
          Constructs an oracle command object.
OracleSYSDatabase.DBColComments(DBDatabase db)
           
OracleSYSDatabase.DBColInfo(DBDatabase db)
           
OracleSYSDatabase.DBConstraints(DBDatabase db)
           
OracleSYSDatabase.DBTabComments(DBDatabase db)
           
OracleSYSDatabase.DBUserConCol(DBDatabase db)
           
 

Uses of DBDatabase in org.apache.empire.db.sqlserver
 

Methods in org.apache.empire.db.sqlserver with parameters of type DBDatabase
 boolean DBDatabaseDriverMSSQL.attachDatabase(DBDatabase db, java.sql.Connection conn)
           
 DBCommand DBDatabaseDriverMSSQL.createCommand(DBDatabase db)
          Creates a new Microsoft SQL-Server command object.
 java.lang.Object DBDatabaseDriverMSSQL.getNextSequenceValue(DBDatabase db, java.lang.String seqName, int minValue, java.sql.Connection conn)
           
 

Constructors in org.apache.empire.db.sqlserver with parameters of type DBDatabase
DBDatabaseDriverMSSQL.DBCommandMSSQL(DBDatabase db)