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

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 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
 java.lang.Object DBDatabaseDriver.getColumnAutoValue(DBDatabase db, DBTableColumn column, java.sql.Connection conn)
          Returns an auto-generated value for a particular column
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.
protected  boolean DBDatabaseDriverDerby.createDatabase(DBDatabase db, DBSQLScript script, boolean createSchema)
           
 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.order
 

Methods in org.apache.empire.db.expr.order that return DBDatabase
 DBDatabase DBOrderByExpr.getDatabase()
           
 

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.
protected  boolean DBDatabaseDriverH2.createDatabase(DBDatabase db, DBSQLScript script, boolean createSchema)
           
 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.
protected  boolean DBDatabaseDriverHSql.createDatabase(DBDatabase db, DBSQLScript script)
           
protected  boolean DBDatabaseDriverHSql.createSequence(DBDatabase db, DBTableColumn c, DBSQLScript script)
          Returns true if the sequence has been created successfully.
 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.
protected  boolean DBDatabaseDriverMySQL.createDatabase(DBDatabase db, DBSQLScript script, boolean createSchema)
           
 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 definition matches the real database structure.
 DBCommand DBDatabaseDriverOracle.createCommand(DBDatabase db)
          Creates a new Oracle command object.
protected  boolean DBDatabaseDriverOracle.createComment(DBDatabase db, java.lang.String type, DBExpr expr, java.lang.String comment, DBSQLScript script)
          Returns true if the comment has been created successfully.
protected  boolean DBDatabaseDriverOracle.createDatabase(DBDatabase db, DBSQLScript script)
          Returns true if the database has been created successfully.
protected  boolean DBDatabaseDriverOracle.createSequence(DBDatabase db, DBTableColumn c, DBSQLScript script)
          Returns true if the sequence has been created successfully.
 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.
protected  boolean DBDatabaseDriverPostgreSQL.createDatabase(DBDatabase db, DBSQLScript script)
           
protected  boolean DBDatabaseDriverPostgreSQL.createSequence(DBDatabase db, DBTableColumn c, DBSQLScript script)
          Returns true if the sequence has been created successfully.
 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.
protected  boolean DBDatabaseDriverMSSQL.createDatabase(DBDatabase db, DBSQLScript script, boolean createSchema)
           
 java.lang.Object DBDatabaseDriverMSSQL.getColumnAutoValue(DBDatabase db, DBTableColumn column, java.sql.Connection conn)
          Returns an auto-generated value for a particular column
 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)
           
 



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