|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||
| Packages that use Table | |
|---|---|
| org.datanucleus.store.rdbms | Package providing management of the persistence to RDBMS datastores. |
| org.datanucleus.store.rdbms.adapter | Provides mappings of all supported databases to aspects of the database that determines the SQL generation. |
| org.datanucleus.store.rdbms.autostart | Package providing additional implementation(s) for the auto-start mechanism for RDBMS datastores. |
| org.datanucleus.store.rdbms.schema | Provides a definition of the schema in the datastore, including tables, columns and types. |
| org.datanucleus.store.rdbms.table | Provides the internal DataNucleus definition of a table/view and its columns. |
| org.datanucleus.store.rdbms.valuegenerator | Package providing a series of value generators for use in RDBMS datastores. |
| Uses of Table in org.datanucleus.store.rdbms |
|---|
| Methods in org.datanucleus.store.rdbms with parameters of type Table | |
|---|---|
RDBMSColumnInfo |
RDBMSStoreManager.getColumnInfoForColumnName(Table table,
Connection conn,
org.datanucleus.store.mapped.DatastoreIdentifier column)
Returns the column info for a column name. |
List |
RDBMSStoreManager.getColumnInfoForTable(Table table,
Connection conn)
Returns the column info for a database table. |
void |
RDBMSStoreManager.invalidateColumnInfoForTable(Table table)
Method to invalidate the cached column info for a table. |
| Uses of Table in org.datanucleus.store.rdbms.adapter |
|---|
| Methods in org.datanucleus.store.rdbms.adapter with parameters of type Table | |
|---|---|
String |
H2Adapter.getAutoIncrementStmt(Table table,
String columnName)
Accessor for the auto-increment sql statement for this datastore. |
String |
InformixAdapter.getAutoIncrementStmt(Table table,
String columnName)
Accessor for the autoincrement sql access statement for this datastore. |
String |
DB2Adapter.getAutoIncrementStmt(Table table,
String columnName)
Accessor for the auto-increment sql statement for this datastore. |
String |
RDBMSAdapter.getAutoIncrementStmt(Table table,
String columnName)
Accessor for the auto-increment/identity sql statement for this datastore. |
String |
MySQLAdapter.getAutoIncrementStmt(Table table,
String columnName)
Accessor for the auto-increment sql statement for this datastore. |
String |
HSQLAdapter.getAutoIncrementStmt(Table table,
String columnName)
Accessor for the auto-increment sql statement for this datastore. |
String |
PostgreSQLAdapter.getAutoIncrementStmt(Table table,
String columnName)
Accessor for the autoincrement sql access statement for this datastore. |
String |
MSSQLServerAdapter.getAutoIncrementStmt(Table table,
String columnName)
Accessor for the auto-increment sql statement for this datastore. |
String |
SQLiteAdapter.getAutoIncrementStmt(Table table,
String columnName)
|
String |
SybaseAdapter.getAutoIncrementStmt(Table table,
String columnName)
Accessor for the auto-increment sql statement for this datastore. |
String |
DerbyAdapter.getAutoIncrementStmt(Table table,
String columnName)
Accessor for the auto-increment SQL statement for this datastore. |
String |
DatabaseAdapter.getAutoIncrementStmt(Table table,
String columnName)
Accessor for the autoincrementing sql statement for this datastore. |
String |
H2Adapter.getInsertStatementForNoColumns(Table table)
Method to retutn the INSERT statement to use when inserting into a table that has no columns specified. |
String |
RDBMSAdapter.getInsertStatementForNoColumns(Table table)
Method to retutn the INSERT statement to use when inserting into a table that has no columns specified. |
String |
HSQLAdapter.getInsertStatementForNoColumns(Table table)
Method to retutn the INSERT statement to use when inserting into a table that has no columns specified. |
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. |
String |
MSSQLServerAdapter.getInsertStatementForNoColumns(Table table)
Method to return the INSERT statement to use when inserting into a table that has no columns specified. |
String |
DerbyAdapter.getInsertStatementForNoColumns(Table table)
Method to return the INSERT statement to use when inserting into a table that has no columns specified. |
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.datanucleus.store.rdbms.autostart |
|---|
| Classes in org.datanucleus.store.rdbms.autostart that implement Table | |
|---|---|
class |
SchemaTable
Class defining DataNucleus schema definition tables. |
| Uses of Table in org.datanucleus.store.rdbms.schema |
|---|
| Methods in org.datanucleus.store.rdbms.schema with parameters of type Table | |
|---|---|
protected RDBMSColumnInfo |
RDBMSSchemaHandler.getRDBMSColumnInfoForColumn(Connection conn,
Table table,
String columnName)
Convenience method to get the column info from the datastore for the column in the specified table. |
protected RDBMSTableFKInfo |
RDBMSSchemaHandler.getRDBMSTableFKInfoForTable(Connection conn,
Table table)
Convenience method to get the ForeignKey info for the specified table from the datastore. |
protected RDBMSTableIndexInfo |
RDBMSSchemaHandler.getRDBMSTableIndexInfoForTable(Connection conn,
Table table)
Convenience method to get the index info for the specified table from the datastore. |
protected RDBMSTableInfo |
RDBMSSchemaHandler.getRDBMSTableInfoForTable(Connection conn,
Table table)
Convenience method to get the column info for the specified table from the datastore. |
protected RDBMSTablePKInfo |
RDBMSSchemaHandler.getRDBMSTablePKInfoForTable(Connection conn,
Table table)
Convenience method to get the PrimaryKey info for the specified table from the datastore. |
String |
RDBMSSchemaHandler.getTableType(Connection conn,
Table table)
Returns the type of a database table/view in the datastore. |
| Uses of Table in org.datanucleus.store.rdbms.table |
|---|
| Classes in org.datanucleus.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 |
PersistableJoinTable
Representation of a join table for the case where we have an N-1 unidirectional relation stored in a join table. |
class |
ProbeTable
Utility class used for detecting database schema existence and provides means of determining the schema name. |
class |
SecondaryTable
Representation of a secondary table for a class. |
class |
TableImpl
Class representing a table in a datastore (RDBMS). |
class |
ViewImpl
Representation of a View in a datastore (RDBMS). |
| Uses of Table in org.datanucleus.store.rdbms.valuegenerator |
|---|
| Classes in org.datanucleus.store.rdbms.valuegenerator that implement Table | |
|---|---|
class |
SequenceTable
Class defining a table for storing generated values for use with TableGenerator. |
|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||