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
 ColumnInfo RDBMSManager.getColumnInfoForColumnName(Table table, java.sql.Connection conn, DatastoreIdentifier column)
          Returns the column info for a column name.
 java.util.List RDBMSManager.getColumnInfoForTable(Table table, java.sql.Connection conn)
          Returns the column info for a database table.
 void RDBMSManager.invalidateColumnInfoForTable(Table table)
          Method to invalidate the cached column info for a table.
static int RDBMSStoreHelper.getTableType(RDBMSManager storeMgr, Table table, java.sql.Connection conn)
          Returns the type of a database table in the datastore.
static java.util.List RDBMSStoreHelper.getColumnInfoForTable(RDBMSManager storeMgr, Table table, java.sql.Connection conn)
          Returns the column info for a database table.
static ColumnInfo RDBMSStoreHelper.getColumnInfoForColumnName(RDBMSManager storeMgr, Table table, java.sql.Connection conn, DatastoreIdentifier column)
          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.
 

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.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.
 

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
          Join table for storing an array of objects.
 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 ListTable
          Representation of a join table for a List/array.
 class MapTable
          Representation of a join table for a Map relationship.
 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 sequence for unique identifiers
 class SetTable
          Representation of a join table for a Set/Collection.
 class TableImpl
          Class representing a table in a datastore (RDBMS).
 class ViewImpl
          Representation of a View in a datastore (RDBMS).
 



Copyright © -2007 . All Rights Reserved.