Uses of Interface
org.jpox.store.rdbms.table.Table

Packages that use Table
org.jpox.store.rdbms Package providing management of the persistence to RDBMS datastores. 
org.jpox.store.rdbms.adapter Provides mappings of all supported databases to aspects of the database that determines the SQL generation. 
org.jpox.store.rdbms.table Provides a series of classes modelling tables and views, firstly in RDBMS, and then extending this to JDO representations. 
 

Uses of Table in org.jpox.store.rdbms
 

Methods in org.jpox.store.rdbms with parameters of type Table
static ColumnInfo RDBMSStoreHelper.getColumnInfoForColumnName(RDBMSManager storeMgr, Table table, java.sql.Connection conn, org.jpox.store.mapped.DatastoreIdentifier column)
          Returns the column info for a database table.
 ColumnInfo RDBMSManager.getColumnInfoForColumnName(Table table, java.sql.Connection conn, org.jpox.store.mapped.DatastoreIdentifier column)
          Returns the column info for a column name.
static java.util.List RDBMSStoreHelper.getColumnInfoForTable(RDBMSManager storeMgr, Table table, java.sql.Connection conn)
          Returns the column info for a database table.
 java.util.List RDBMSManager.getColumnInfoForTable(Table table, java.sql.Connection conn)
          Returns the column info for a database table.
static java.util.List RDBMSStoreHelper.getForeignKeyInfoForTable(RDBMSManager storeMgr, Table table, java.sql.Connection conn)
          Returns the foreign key info for a database table.
static int RDBMSStoreHelper.getTableType(RDBMSManager storeMgr, Table table, java.sql.Connection conn)
          Returns the type of a database table in the datastore.
 void RDBMSManager.invalidateColumnInfoForTable(Table table)
          Method to invalidate the cached column info for a table.
 

Uses of Table in org.jpox.store.rdbms.adapter
 

Methods in org.jpox.store.rdbms.adapter with parameters of type Table
 java.lang.String RDBMSAdapter.getAutoIncrementStmt(Table table, java.lang.String columnName)
          Accessor for the auto-increment/identity sql statement for this datastore.
 java.lang.String DatabaseAdapter.getAutoIncrementStmt(Table table, java.lang.String columnName)
          Accessor for the autoincrementing sql statement for this datastore.
 java.lang.String SybaseAdapter.getAutoIncrementStmt(Table table, java.lang.String columnName)
          Accessor for the auto-increment sql statement for this datastore.
 java.lang.String MSSQLServerAdapter.getAutoIncrementStmt(Table table, java.lang.String columnName)
          Accessor for the auto-increment sql statement for this datastore.
 java.lang.String H2Adapter.getAutoIncrementStmt(Table table, java.lang.String columnName)
          Accessor for the auto-increment sql statement for this datastore.
 java.lang.String DB2Adapter.getAutoIncrementStmt(Table table, java.lang.String columnName)
          Accessor for the auto-increment sql statement for this datastore.
 java.lang.String PostgreSQLAdapter.getAutoIncrementStmt(Table table, java.lang.String columnName)
          Accessor for the autoincrement sql access statement for this datastore.
 java.lang.String HSQLAdapter.getAutoIncrementStmt(Table table, java.lang.String columnName)
          Accessor for the auto-increment sql statement for this datastore.
 java.lang.String InformixAdapter.getAutoIncrementStmt(Table table, java.lang.String columnName)
          Accessor for the autoincrement sql access statement for this datastore.
 java.lang.String MySQLAdapter.getAutoIncrementStmt(Table table, java.lang.String columnName)
          Accessor for the auto-increment sql statement for this datastore.
 java.lang.String DerbyAdapter.getAutoIncrementStmt(Table table, java.lang.String columnName)
          Accessor for the auto-increment sql statement for this datastore.
 java.lang.String RDBMSAdapter.getInsertStatementForNoColumns(Table table)
          Method to retutn the INSERT statement to use when inserting into a table that has no columns specified.
 java.lang.String DatabaseAdapter.getInsertStatementForNoColumns(Table table)
          Method to return the INSERT statement to use when inserting into a table that has no columns specified.
 java.lang.String MSSQLServerAdapter.getInsertStatementForNoColumns(Table table)
          Method to return the INSERT statement to use when inserting into a table that has no columns specified.
 java.lang.String H2Adapter.getInsertStatementForNoColumns(Table table)
          Method to retutn the INSERT statement to use when inserting into a table that has no columns specified.
 java.lang.String PostgreSQLAdapter.getInsertStatementForNoColumns(Table table)
          Method to return the INSERT statement to use when inserting into a table and we dont want to specify columns.
 java.lang.String HSQLAdapter.getInsertStatementForNoColumns(Table table)
          Method to retutn the INSERT statement to use when inserting into a table that has no columns specified.
 java.lang.String DerbyAdapter.getInsertStatementForNoColumns(Table table)
          Method to retutn the INSERT statement to use when inserting into a table that has no columns specified.
 

Uses of Table in org.jpox.store.rdbms.table
 

Subinterfaces of Table in org.jpox.store.rdbms.table
 interface SCOTable
          Interface for a table that aggregates a FCO to SCO elements/keys/values or a FCO to embedded elements/keys/values in the association
 

Classes in org.jpox.store.rdbms.table that implement Table
 class AbstractClassTable
          Abstract representation of a table for a class.
 class AbstractTable
          Abstract implementation of a table in the datastore.
 class ArrayTable
          Representation of a join table for an array.
 class ClassTable
          Table representing a Java class (or classes) as a first class object (FCO).
 class ClassView
          Representation of an SQL View for a Class.
 class CollectionTable
          Representation of a join table for a Collection.
 class ElementContainerTable
          Representation of a join table for a container of elements.
 class JoinTable
          Abstract class representing a field that maps to a table in the datastore.
 class MapTable
          Representation of a join table for a Map.
 class ProbeTable
          Utility class used for detecting database schema existence and provides means of determining the schema name.
 class SchemaTable
          Class defining JPOX schema definition tables.
 class SecondaryTable
          Representation of a secondary table for a class.
 class SequenceTable
          Class defining a table for storing generated values.
 class TableImpl
          Class representing a table in a datastore (RDBMS).
 class ViewImpl
          Representation of a View in a datastore (RDBMS).
 



Copyright © -2008 . All Rights Reserved.