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.derby This package contains classes necessary to support the Apache Derby database system. 
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 DBTable in org.apache.empire.db
 

Subclasses of DBTable in org.apache.empire.db
static class DBDatabaseDriver.DBSeqTable
          This class is used to emulate sequences by using a sequence table.
 

Fields in org.apache.empire.db with type parameters of type DBTable
protected  java.util.List<DBTable> DBDatabase.tables
           
 

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.
There is usually no need to call this function directly since it is internally called from the DBTable's constructor.
 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.
protected  java.lang.String DBCommandExpr.getInsertInto(DBTable table, DBColumnExpr[] select, java.util.List<DBColumnExpr> columns)
          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)
          Deprecated. use DBTableColumn(DBTable table, DataType type, String name, double size, DataMode dataMode, Object defValue) instead
DBTableColumn(DBTable table, DataType type, java.lang.String name, double size, DataMode dataMode, java.lang.Object defValue)
          Constructs a DBTableColumn object set the specified parameters to this object.
DBTableColumn(DBTable newTable, DBTableColumn other)
          Clone Constructor - use clone()
 

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

Methods in org.apache.empire.db.derby with parameters of type DBTable
protected  boolean DBDatabaseDriverDerby.createTable(DBTable t, DBSQLScript script)
          Returns true if the table has been created successfully.
 

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

Methods in org.apache.empire.db.h2 with parameters of type DBTable
protected  boolean DBDatabaseDriverH2.createTable(DBTable t, DBSQLScript script)
          Returns true if the table has been created successfully.
 

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

Methods in org.apache.empire.db.hsql with parameters of type DBTable
protected  boolean DBDatabaseDriverHSql.createTable(DBTable t, DBSQLScript script)
          Returns true if the table has been created successfully.
 

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

Methods in org.apache.empire.db.mysql with parameters of type DBTable
protected  boolean DBDatabaseDriverMySQL.createTable(DBTable t, DBSQLScript script)
          Returns true if the table has been created successfully.
 

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
protected  boolean DBDatabaseDriverOracle.createTable(DBTable t, DBSQLScript script)
          Returns true if the table has been created successfully.
 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)
           
 

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

Methods in org.apache.empire.db.postgresql with parameters of type DBTable
protected  boolean DBDatabaseDriverPostgreSQL.createTable(DBTable t, DBSQLScript script)
          Returns true if the table has been created successfully.
 

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

Methods in org.apache.empire.db.sqlserver with parameters of type DBTable
protected  boolean DBDatabaseDriverMSSQL.createTable(DBTable t, DBSQLScript script)
          Returns true if the table has been created successfully.
 



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