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.derby This package contains classes necessary to support the Apache Derby database system. 
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.h2 This package contains classes necessary to support the H2 database system. 
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.postgresql This package contains classes necessary to support the PostgreSQL database system. 
org.apache.empire.db.sqlserver This package contains classes necessary to support the Microsoft SQL-Server database system. 
org.apache.empire.samples.cxf.wssample.server.db   
org.apache.empire.samples.db   
org.apache.empire.samples.db.advanced   
org.apache.empire.struts2.websample.db   
 

Uses of DBDatabase in org.apache.empire.db
 

Fields in org.apache.empire.db declared as DBDatabase
protected  DBDatabase DBRowSet.db
           
 

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

Methods in org.apache.empire.db with parameters of type DBDatabase
protected  boolean DBDatabaseDriver.attachDatabase(DBDatabase db, java.sql.Connection conn)
          Called when a database is opened
 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
protected  void DBDatabaseDriver.detachDatabase(DBDatabase db, java.sql.Connection conn)
          Called when a database is closed
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.
If a driver supports this function it must return true for isSupported(DBDriverFeature.SEQUENCES).
 

Constructors in org.apache.empire.db with parameters of type DBDatabase
DBCommand(DBDatabase db)
          Constructs a new DBCommand object and set the specified DBDatabase object.
DBDatabaseDriver.DBSeqTable(java.lang.String tableName, DBDatabase db)
          Constructor
DBRelation(DBDatabase db, java.lang.String name, DBRelation.DBReference[] references)
          Creates a DBRelation 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.derby
 

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

Constructors in org.apache.empire.db.derby with parameters of type DBDatabase
DBDatabaseDriverDerby.DBCommandDerby(DBDatabase db)
           
 

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 DBCountExpr.getDatabase()
          Returns the current DBDatabase object.
 DBDatabase DBAliasExpr.getDatabase()
          Returns the current DBDatabase object.
 DBDatabase DBConcatExpr.getDatabase()
           
 DBDatabase DBCaseExpr.getDatabase()
           
 DBDatabase DBCalcExpr.getDatabase()
          Returns the current DBDatabase object.
 DBDatabase DBValueExpr.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.
 

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 DBCompareColExpr.getDatabase()
          Returns the current DBDatabase object.
 DBDatabase DBCompareNotExpr.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.h2
 

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

Constructors in org.apache.empire.db.h2 with parameters of type DBDatabase
DBDatabaseDriverH2.DBCommandH2(DBDatabase db)
           
 

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)
           
 

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.postgresql
 

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

Constructors in org.apache.empire.db.postgresql with parameters of type DBDatabase
DBDatabaseDriverPostgreSQL.DBCommandPostreSQL(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)
           
 

Uses of DBDatabase in org.apache.empire.samples.cxf.wssample.server.db
 

Constructors in org.apache.empire.samples.cxf.wssample.server.db with parameters of type DBDatabase
SampleDB.Departments(DBDatabase db)
           
SampleDB.Employees(DBDatabase db)
           
 

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

Subclasses of DBDatabase in org.apache.empire.samples.db
 class SampleDB
           This file contains the definition of the data model in Java.
 

Constructors in org.apache.empire.samples.db with parameters of type DBDatabase
SampleDB.Departments(DBDatabase db)
           
SampleDB.Employees(DBDatabase db)
           
 

Uses of DBDatabase in org.apache.empire.samples.db.advanced
 

Subclasses of DBDatabase in org.apache.empire.samples.db.advanced
 class SampleAdvDB
           This file contains the definition of the data model in Java.
 

Constructors in org.apache.empire.samples.db.advanced with parameters of type DBDatabase
SampleAdvDB.Departments(DBDatabase db)
           
SampleAdvDB.EmployeeDepartmentHistory(DBDatabase db)
           
SampleAdvDB.EmployeeDepSinceView(DBDatabase db, SampleAdvDB.EmployeeDepartmentHistory T_EDH)
           
SampleAdvDB.EmployeeInfoView(DBDatabase db, SampleAdvDB.Employees T_EMP, SampleAdvDB.Departments T_DEP)
           
SampleAdvDB.Employees(DBDatabase db)
           
 

Uses of DBDatabase in org.apache.empire.struts2.websample.db
 

Constructors in org.apache.empire.struts2.websample.db with parameters of type DBDatabase
SampleDB.Departments(DBDatabase db)
           
SampleDB.Employees(DBDatabase db)
           
SampleTable(java.lang.String name, DBDatabase db)
           
 



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