Uses of Package
org.apache.empire.db

Packages that use org.apache.empire.db
org.apache.empire.data.bean This package contains implmentations of Empire's data and metadata interfaces for JavaBeans of Data Tranfer Objects (DTO's). 
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.exceptions This package contains classes for exception handling of database related errors. 
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.sqlite   
org.apache.empire.db.sqlserver This package contains classes necessary to support the Microsoft SQL-Server database system. 
org.apache.empire.exceptions This package contains classes for exception handling of general errors. 
 

Classes in org.apache.empire.db used by org.apache.empire.data.bean
DBCommand
          This abstract class handles the creation of the SQL-Commands.
DBRowSet
          This class is the base class for all the DBTable, DBView and DBQuery classes this class contains all the columns of the tables, views or queries
 

Classes in org.apache.empire.db used by org.apache.empire.db
DBCmdParam
          This class defines a parameter for a prepared statement query.
DBCmdType
          This enum allocates the available command types.
DBCmpType
          This enum allocates the available compare types.
DBColumn
          This is the base class for all database columns that have a physical representation.
DBColumnExpr
          This class is the base class for all expressions that represent a single value.
DBCommand
          This abstract class handles the creation of the SQL-Commands.
DBCommandExpr
          This abstract class handles the creation of the SQL-Commands.
DBCommandExpr.DBCmdQuery
           
DBDatabase
          This abstract class is the applicaton's interface for a particular database schema.
DBDatabase.DBSystemDate
          This class represents the database systems current date and time.
DBDatabaseDriver
          The DBDatabaseDriver class is an abstract base class for all database drivers.
DBDatabaseDriver.DBSetGenKeys
          This interface is used to set the auto generated keys when executing insert statements.
DBDriverFeature
          This enum is used with the DBDatabaseDriver::isSupported method to query database driver capabilities.
DBExpr
          This abstract class is the base class for all database expression classes (e.g.
DBIndex
          This class handles the primary key for the tables.
DBJoinType
          DBJoinType contains the possibilities to join two database tables.
DBObject
          Base class for all objects that directly or indirectly belong to a database including the database object itself.
DBQuery
          This class can be used to wrap a query from a DBCommand and use it like a DBRowSet.
You may use this class for two purposes: In oder to define subqueries simply define a command object with the subquery and wrap it inside a DBQuery.
DBQuery.DBQueryColumn
           
DBReader.DBReaderIterator
           
DBRecord
          This class handles one record from a database table.
DBRecord.State
           
DBRecordData
          This interface defines for the classes DDRecordSet and DBRecord.
DBRelation
          This class creates a DBReferene object for a foreing key relation.
DBRelation.DBCascadeAction
          DBCascadeAction enum
DBRelation.DBReference
           
DBRowSet
          This class is the base class for all the DBTable, DBView and DBQuery classes this class contains all the columns of the tables, views or queries
DBSQLScript
          DBSQLScript
This class is a collection of sql command strings.
The class is used for obtaining and executing DDL commands supplied by the database driver (@see DBDatabaseDriver.getDDLScript(DBCmdType, DBObject, DBSQLScript))
DBTable
          This class represent one table of the database.
DBTableColumn
          This class represent one column of a table.
DBView
          This class represents a database view.
DBView.DBViewColumn
           
DBXmlDictionary
          This class is used to configure XML generation as performed by the getXmlDocument Document function on DBReader and DBRecord.
 

Classes in org.apache.empire.db used by org.apache.empire.db.derby
DBCmdType
          This enum allocates the available command types.
DBCommand
          This abstract class handles the creation of the SQL-Commands.
DBCommandExpr
          This abstract class handles the creation of the SQL-Commands.
DBDatabase
          This abstract class is the applicaton's interface for a particular database schema.
DBDatabaseDriver
          The DBDatabaseDriver class is an abstract base class for all database drivers.
DBDDLGenerator
           
DBDriverFeature
          This enum is used with the DBDatabaseDriver::isSupported method to query database driver capabilities.
DBExpr
          This abstract class is the base class for all database expression classes (e.g.
DBObject
          Base class for all objects that directly or indirectly belong to a database including the database object itself.
DBSQLScript
          DBSQLScript
This class is a collection of sql command strings.
The class is used for obtaining and executing DDL commands supplied by the database driver (@see DBDatabaseDriver.getDDLScript(DBCmdType, DBObject, DBSQLScript))
DBTableColumn
          This class represent one column of a table.
 

Classes in org.apache.empire.db used by org.apache.empire.db.exceptions
DBDatabase
          This abstract class is the applicaton's interface for a particular database schema.
DBDatabaseDriver
          The DBDatabaseDriver class is an abstract base class for all database drivers.
DBObject
          Base class for all objects that directly or indirectly belong to a database including the database object itself.
DBRowSet
          This class is the base class for all the DBTable, DBView and DBQuery classes this class contains all the columns of the tables, views or queries
 

Classes in org.apache.empire.db used by org.apache.empire.db.expr.column
DBColumn
          This is the base class for all database columns that have a physical representation.
DBColumnExpr
          This class is the base class for all expressions that represent a single value.
DBDatabase
          This abstract class is the applicaton's interface for a particular database schema.
DBDatabaseDriver
          The DBDatabaseDriver class is an abstract base class for all database drivers.
DBExpr
          This abstract class is the base class for all database expression classes (e.g.
DBObject
          Base class for all objects that directly or indirectly belong to a database including the database object itself.
DBRowSet
          This class is the base class for all the DBTable, DBView and DBQuery classes this class contains all the columns of the tables, views or queries
 

Classes in org.apache.empire.db used by org.apache.empire.db.expr.compare
DBCmpType
          This enum allocates the available compare types.
DBColumn
          This is the base class for all database columns that have a physical representation.
DBColumnExpr
          This class is the base class for all expressions that represent a single value.
DBCommandExpr
          This abstract class handles the creation of the SQL-Commands.
DBDatabase
          This abstract class is the applicaton's interface for a particular database schema.
DBExpr
          This abstract class is the base class for all database expression classes (e.g.
DBObject
          Base class for all objects that directly or indirectly belong to a database including the database object itself.
 

Classes in org.apache.empire.db used by org.apache.empire.db.expr.join
DBColumn
          This is the base class for all database columns that have a physical representation.
DBColumnExpr
          This class is the base class for all expressions that represent a single value.
DBDatabase
          This abstract class is the applicaton's interface for a particular database schema.
DBExpr
          This abstract class is the base class for all database expression classes (e.g.
DBJoinType
          DBJoinType contains the possibilities to join two database tables.
DBObject
          Base class for all objects that directly or indirectly belong to a database including the database object itself.
DBRowSet
          This class is the base class for all the DBTable, DBView and DBQuery classes this class contains all the columns of the tables, views or queries
 

Classes in org.apache.empire.db used by org.apache.empire.db.expr.order
DBColumn
          This is the base class for all database columns that have a physical representation.
DBColumnExpr
          This class is the base class for all expressions that represent a single value.
DBDatabase
          This abstract class is the applicaton's interface for a particular database schema.
DBExpr
          This abstract class is the base class for all database expression classes (e.g.
DBObject
          Base class for all objects that directly or indirectly belong to a database including the database object itself.
 

Classes in org.apache.empire.db used by org.apache.empire.db.expr.set
DBColumn
          This is the base class for all database columns that have a physical representation.
DBDatabase
          This abstract class is the applicaton's interface for a particular database schema.
DBExpr
          This abstract class is the base class for all database expression classes (e.g.
DBObject
          Base class for all objects that directly or indirectly belong to a database including the database object itself.
DBRowSet
          This class is the base class for all the DBTable, DBView and DBQuery classes this class contains all the columns of the tables, views or queries
 

Classes in org.apache.empire.db used by org.apache.empire.db.h2
DBCmdType
          This enum allocates the available command types.
DBCommand
          This abstract class handles the creation of the SQL-Commands.
DBCommandExpr
          This abstract class handles the creation of the SQL-Commands.
DBDatabase
          This abstract class is the applicaton's interface for a particular database schema.
DBDatabaseDriver
          The DBDatabaseDriver class is an abstract base class for all database drivers.
DBDDLGenerator
           
DBDriverFeature
          This enum is used with the DBDatabaseDriver::isSupported method to query database driver capabilities.
DBExpr
          This abstract class is the base class for all database expression classes (e.g.
DBObject
          Base class for all objects that directly or indirectly belong to a database including the database object itself.
DBSQLScript
          DBSQLScript
This class is a collection of sql command strings.
The class is used for obtaining and executing DDL commands supplied by the database driver (@see DBDatabaseDriver.getDDLScript(DBCmdType, DBObject, DBSQLScript))
DBTableColumn
          This class represent one column of a table.
 

Classes in org.apache.empire.db used by org.apache.empire.db.hsql
DBCmdType
          This enum allocates the available command types.
DBCommand
          This abstract class handles the creation of the SQL-Commands.
DBCommandExpr
          This abstract class handles the creation of the SQL-Commands.
DBDatabase
          This abstract class is the applicaton's interface for a particular database schema.
DBDatabaseDriver
          The DBDatabaseDriver class is an abstract base class for all database drivers.
DBDDLGenerator
           
DBDriverFeature
          This enum is used with the DBDatabaseDriver::isSupported method to query database driver capabilities.
DBExpr
          This abstract class is the base class for all database expression classes (e.g.
DBObject
          Base class for all objects that directly or indirectly belong to a database including the database object itself.
DBSQLScript
          DBSQLScript
This class is a collection of sql command strings.
The class is used for obtaining and executing DDL commands supplied by the database driver (@see DBDatabaseDriver.getDDLScript(DBCmdType, DBObject, DBSQLScript))
DBTableColumn
          This class represent one column of a table.
 

Classes in org.apache.empire.db used by org.apache.empire.db.mysql
DBCmdType
          This enum allocates the available command types.
DBCommand
          This abstract class handles the creation of the SQL-Commands.
DBCommandExpr
          This abstract class handles the creation of the SQL-Commands.
DBDatabase
          This abstract class is the applicaton's interface for a particular database schema.
DBDatabaseDriver
          The DBDatabaseDriver class is an abstract base class for all database drivers.
DBDDLGenerator
           
DBDriverFeature
          This enum is used with the DBDatabaseDriver::isSupported method to query database driver capabilities.
DBExpr
          This abstract class is the base class for all database expression classes (e.g.
DBObject
          Base class for all objects that directly or indirectly belong to a database including the database object itself.
DBSQLScript
          DBSQLScript
This class is a collection of sql command strings.
The class is used for obtaining and executing DDL commands supplied by the database driver (@see DBDatabaseDriver.getDDLScript(DBCmdType, DBObject, DBSQLScript))
DBTable
          This class represent one table of the database.
DBTableColumn
          This class represent one column of a table.
 

Classes in org.apache.empire.db used by org.apache.empire.db.oracle
DBCmdType
          This enum allocates the available command types.
DBColumn
          This is the base class for all database columns that have a physical representation.
DBColumnExpr
          This class is the base class for all expressions that represent a single value.
DBCommand
          This abstract class handles the creation of the SQL-Commands.
DBCommandExpr
          This abstract class handles the creation of the SQL-Commands.
DBDatabase
          This abstract class is the applicaton's interface for a particular database schema.
DBDatabaseDriver
          The DBDatabaseDriver class is an abstract base class for all database drivers.
DBDDLGenerator
           
DBDriverFeature
          This enum is used with the DBDatabaseDriver::isSupported method to query database driver capabilities.
DBExpr
          This abstract class is the base class for all database expression classes (e.g.
DBIndex
          This class handles the primary key for the tables.
DBObject
          Base class for all objects that directly or indirectly belong to a database including the database object itself.
DBRelation
          This class creates a DBReferene object for a foreing key relation.
DBRowSet
          This class is the base class for all the DBTable, DBView and DBQuery classes this class contains all the columns of the tables, views or queries
DBSQLScript
          DBSQLScript
This class is a collection of sql command strings.
The class is used for obtaining and executing DDL commands supplied by the database driver (@see DBDatabaseDriver.getDDLScript(DBCmdType, DBObject, DBSQLScript))
DBTable
          This class represent one table of the database.
DBTableColumn
          This class represent one column of a table.
DBView
          This class represents a database view.
 

Classes in org.apache.empire.db used by org.apache.empire.db.postgresql
DBCmdType
          This enum allocates the available command types.
DBCommand
          This abstract class handles the creation of the SQL-Commands.
DBCommandExpr
          This abstract class handles the creation of the SQL-Commands.
DBDatabase
          This abstract class is the applicaton's interface for a particular database schema.
DBDatabaseDriver
          The DBDatabaseDriver class is an abstract base class for all database drivers.
DBDDLGenerator
           
DBDriverFeature
          This enum is used with the DBDatabaseDriver::isSupported method to query database driver capabilities.
DBExpr
          This abstract class is the base class for all database expression classes (e.g.
DBObject
          Base class for all objects that directly or indirectly belong to a database including the database object itself.
DBSQLScript
          DBSQLScript
This class is a collection of sql command strings.
The class is used for obtaining and executing DDL commands supplied by the database driver (@see DBDatabaseDriver.getDDLScript(DBCmdType, DBObject, DBSQLScript))
DBTableColumn
          This class represent one column of a table.
 

Classes in org.apache.empire.db used by org.apache.empire.db.sqlite
DBCmdType
          This enum allocates the available command types.
DBColumn
          This is the base class for all database columns that have a physical representation.
DBColumnExpr
          This class is the base class for all expressions that represent a single value.
DBCommand
          This abstract class handles the creation of the SQL-Commands.
DBCommandExpr
          This abstract class handles the creation of the SQL-Commands.
DBDatabase
          This abstract class is the applicaton's interface for a particular database schema.
DBDatabaseDriver
          The DBDatabaseDriver class is an abstract base class for all database drivers.
DBDatabaseDriver.DBSetGenKeys
          This interface is used to set the auto generated keys when executing insert statements.
DBDDLGenerator
           
DBDriverFeature
          This enum is used with the DBDatabaseDriver::isSupported method to query database driver capabilities.
DBExpr
          This abstract class is the base class for all database expression classes (e.g.
DBJoinType
          DBJoinType contains the possibilities to join two database tables.
DBObject
          Base class for all objects that directly or indirectly belong to a database including the database object itself.
DBRelation
          This class creates a DBReferene object for a foreing key relation.
DBSQLScript
          DBSQLScript
This class is a collection of sql command strings.
The class is used for obtaining and executing DDL commands supplied by the database driver (@see DBDatabaseDriver.getDDLScript(DBCmdType, DBObject, DBSQLScript))
DBTable
          This class represent one table of the database.
 

Classes in org.apache.empire.db used by org.apache.empire.db.sqlserver
DBCmdType
          This enum allocates the available command types.
DBCommand
          This abstract class handles the creation of the SQL-Commands.
DBCommandExpr
          This abstract class handles the creation of the SQL-Commands.
DBDatabase
          This abstract class is the applicaton's interface for a particular database schema.
DBDatabaseDriver
          The DBDatabaseDriver class is an abstract base class for all database drivers.
DBDDLGenerator
           
DBDriverFeature
          This enum is used with the DBDatabaseDriver::isSupported method to query database driver capabilities.
DBExpr
          This abstract class is the base class for all database expression classes (e.g.
DBObject
          Base class for all objects that directly or indirectly belong to a database including the database object itself.
DBRelation
          This class creates a DBReferene object for a foreing key relation.
DBSQLScript
          DBSQLScript
This class is a collection of sql command strings.
The class is used for obtaining and executing DDL commands supplied by the database driver (@see DBDatabaseDriver.getDDLScript(DBCmdType, DBObject, DBSQLScript))
DBTableColumn
          This class represent one column of a table.
 

Classes in org.apache.empire.db used by org.apache.empire.exceptions
DBRowSet
          This class is the base class for all the DBTable, DBView and DBQuery classes this class contains all the columns of the tables, views or queries
 



Copyright © 2008–2014 Apache Software Foundation. All rights reserved.