|
||||||||||
PREV NEXT | FRAMES NO FRAMES |
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. |
org.apache.empire.samples.db | |
org.apache.empire.samples.db.advanced | |
org.apache.empire.struts2.websample.db |
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)
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.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)
|
Uses of DBTable in org.apache.empire.samples.db |
---|
Subclasses of DBTable in org.apache.empire.samples.db | |
---|---|
static class |
SampleDB.Departments
This class represents the definition of the Departments table. |
static class |
SampleDB.Employees
This class represents the definition of the Employees table. |
Uses of DBTable in org.apache.empire.samples.db.advanced |
---|
Subclasses of DBTable in org.apache.empire.samples.db.advanced | |
---|---|
static class |
SampleAdvDB.Departments
This class represents the definition of the Departments table. |
static class |
SampleAdvDB.EmployeeDepartmentHistory
This class represents the definition of the Departments table. |
static class |
SampleAdvDB.Employees
This class represents the definition of the Employees table. |
Uses of DBTable in org.apache.empire.struts2.websample.db |
---|
Subclasses of DBTable in org.apache.empire.struts2.websample.db | |
---|---|
class |
SampleTable
Base class definition for all database tables Automatically generates a message-key for the field title e.g. |
|
||||||||||
PREV NEXT | FRAMES NO FRAMES |