|
|||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use DatabaseTable | |
org.objectweb.cjdbc.controller.backend | Database backend core. |
org.objectweb.cjdbc.controller.cache.schema | Database schema management for query caches. |
org.objectweb.cjdbc.controller.scheduler.schema | Database schema handling for schedulers. |
org.objectweb.cjdbc.controller.xml | XML configuration file parsing and handling. |
org.objectweb.cjdbc.sql | SQL requests that are sent from the C-JDBC driver to the C-JDBC controller. |
org.objectweb.cjdbc.sql.schema | Database schema handling for parsing SQL requests. |
Uses of DatabaseTable in org.objectweb.cjdbc.controller.backend |
Methods in org.objectweb.cjdbc.controller.backend with parameters of type DatabaseTable | |
private void |
DatabaseBackendMetaData.getColumns(java.sql.DatabaseMetaData metaData,
DatabaseTable table)
Gets the list of columns of a given database table. |
private void |
DatabaseBackendMetaData.getPrimaryKeys(java.sql.DatabaseMetaData metaData,
DatabaseTable table)
Gets the primary keys of a given database table. |
Uses of DatabaseTable in org.objectweb.cjdbc.controller.cache.schema |
Constructors in org.objectweb.cjdbc.controller.cache.schema with parameters of type DatabaseTable | |
CacheDatabaseTable(DatabaseTable databaseTable)
Creates a new CacheDatabaseTable instance. |
Uses of DatabaseTable in org.objectweb.cjdbc.controller.scheduler.schema |
Constructors in org.objectweb.cjdbc.controller.scheduler.schema with parameters of type DatabaseTable | |
SchedulerDatabaseTable(DatabaseTable databaseTable)
Creates a new CacheDatabaseTable instance. |
Uses of DatabaseTable in org.objectweb.cjdbc.controller.xml |
Fields in org.objectweb.cjdbc.controller.xml declared as DatabaseTable | |
private DatabaseTable |
DatabasesHandler.currentTable
|
Uses of DatabaseTable in org.objectweb.cjdbc.sql |
Fields in org.objectweb.cjdbc.sql declared as DatabaseTable | |
private DatabaseTable |
CreateRequest.table
The table to create. |
Methods in org.objectweb.cjdbc.sql that return DatabaseTable | |
DatabaseTable |
CreateRequest.getDatabaseTable()
Gets the database table created by this statement. |
Uses of DatabaseTable in org.objectweb.cjdbc.sql.schema |
Fields in org.objectweb.cjdbc.sql.schema declared as DatabaseTable | |
private DatabaseTable |
AliasedDatabaseTable.table
Database table. |
Methods in org.objectweb.cjdbc.sql.schema that return DatabaseTable | |
DatabaseTable |
DatabaseSchema.getTable(java.lang.String tableName)
Returns the DatabaseTable object matching the given table
name or null if not found. |
DatabaseTable |
DatabaseSchema.getTable(java.lang.String tableName,
boolean isCaseSensitive)
Returns the DatabaseTable object matching the given table
name or null if not found. |
DatabaseTable |
AliasedDatabaseTable.getTable()
Returns the DatabaseTable object corresponding to
this database. |
Methods in org.objectweb.cjdbc.sql.schema with parameters of type DatabaseTable | |
void |
DatabaseSchema.addTable(DatabaseTable table)
Adds a DatabaseTable describing a table of the database. |
void |
DatabaseSchema.removeTable(DatabaseTable table)
Removes a DatabaseTable describing a table of the database. |
void |
DatabaseTable.mergeColumns(DatabaseTable table)
Merges this table with the given table's columns. |
Constructors in org.objectweb.cjdbc.sql.schema with parameters of type DatabaseTable | |
AliasedDatabaseTable(DatabaseTable table,
java.lang.String alias)
Creates a new AliasedDatabaseTable instance. |
|
|||||||||||
PREV NEXT | FRAMES NO FRAMES |