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

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

Subclasses of DBTable in org.apache.empire.db
static class DBDatabaseDriver.DBSeqTable
           
 

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

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

Methods in org.apache.empire.db with parameters of type DBTable
 boolean DBDatabase.addTable(DBTable table)
          Adds a DBTable object to list of database tables.
 java.lang.String DBCommand.getDelete(DBTable table)
          Creates the delete SQL-Command.
 java.lang.String DBCommandExpr.getInsertInto(DBTable table)
          Create the insert into SQL-Command which copies data from a select statement to a destination table.
 java.lang.String DBCommandExpr.getInsertInto(DBTable table, java.util.List<DBColumnExpr> columns)
          Create the insert into SQL-Command which copies data from a select statement to a destination table.
 

Constructors in org.apache.empire.db with parameters of type DBTable
DBTableColumn(DBTable table, DataType type, java.lang.String name, double size, boolean required, java.lang.Object defValue)
          Constructs a DBTableColumn object set the specified parameters to this object.
 

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

Subclasses of DBTable in org.apache.empire.db.oracle
static class OracleSYSDatabase.DBColComments
           
static class OracleSYSDatabase.DBColInfo
           
static class OracleSYSDatabase.DBConstraints
           
static class OracleSYSDatabase.DBTabComments
           
static class OracleSYSDatabase.DBUserConCol
           
 

Methods in org.apache.empire.db.oracle with parameters of type DBTable
 java.lang.String DBCommandOracle.getDelete(DBTable table)
          Creates the delete SQL-Command.
 

Method parameters in org.apache.empire.db.oracle with type arguments of type DBTable
 void OracleDataDictionnary.checkDBTableDefinition(java.util.List<DBTable> dbTables)