|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
java.lang.Objectorg.datanucleus.store.rdbms.table.AbstractTable
org.datanucleus.store.rdbms.table.TableImpl
org.datanucleus.store.rdbms.autostart.SchemaTable
public class SchemaTable
Class defining DataNucleus schema definition tables. Represents a table in the datastore storing the class and table mappings. This table is used when restarting a DataNucleus system so that it is 'aware' of what classes were supported the previous time this datastore was used. It uses this information to pre-populate the RDBMSManager with the classes stored in this table. The table names are not used as such, other than as a record of what table a class maps to - because it goes off and finds the MetaData for the class which, with the DataNucleus naming scheme, defines the table name anyway.
| Field Summary |
|---|
| Fields inherited from class org.datanucleus.store.rdbms.table.AbstractTable |
|---|
columns, columnsByName, dba, existsInDatastore, identifier, LOCALISER, state, storeMgr, TABLE_STATE_INITIALIZED, TABLE_STATE_INITIALIZED_MODIFIED, TABLE_STATE_NEW, TABLE_STATE_PK_INITIALIZED, TABLE_STATE_VALIDATED |
| Constructor Summary | |
|---|---|
SchemaTable(RDBMSStoreManager storeMgr,
String tableName)
Constructor. |
|
| Method Summary | |
|---|---|
void |
addClass(org.datanucleus.store.mapped.MappedStoreData data,
org.datanucleus.store.connection.ManagedConnection conn)
Method to insert a row in the SchemaTable. |
void |
deleteAllClasses(org.datanucleus.store.connection.ManagedConnection conn)
Method to delete all classes from the SchemaTable. |
void |
deleteClass(String class_name,
org.datanucleus.store.connection.ManagedConnection conn)
Method to delete a class from the SchemaTable. |
HashSet |
getAllClasses(org.datanucleus.store.connection.ManagedConnection conn)
Accessor for the classes already supported by this Schema Table. |
org.datanucleus.store.mapped.mapping.JavaTypeMapping |
getIdMapping()
Accessor for a mapping for the ID (PersistenceCapable) for this table. |
org.datanucleus.store.mapped.mapping.JavaTypeMapping |
getMemberMapping(org.datanucleus.metadata.AbstractMemberMetaData mmd)
Accessor the for the mapping for a field/property stored in this table. |
void |
initialize(org.datanucleus.ClassLoaderResolver clr)
Method to initialise the table. |
| Methods inherited from class org.datanucleus.store.rdbms.table.TableImpl |
|---|
createConstraints, dropConstraints, getExpectedCandidateKeys, getExpectedForeignKeys, getExpectedIndices, getPrimaryKey, getSQLAddCandidateKeyStatements, getSQLAddFKStatements, getSQLCreateIndexStatements, getSQLCreateStatements, getSQLDropStatements, initializeColumnInfoForPrimaryKeyColumns, initializeColumnInfoFromDatastore, postInitialize, preInitialize, validate, validateColumns, validateConstraints, validatePrimaryKey |
| Methods inherited from class java.lang.Object |
|---|
clone, finalize, getClass, notify, notifyAll, wait, wait, wait |
| Constructor Detail |
|---|
public SchemaTable(RDBMSStoreManager storeMgr,
String tableName)
storeMgr - The RDBMSManager for this datastoretableName - Name of the starter table (optional, uses NUCLEUS_TABLES when this is null)| Method Detail |
|---|
public void initialize(org.datanucleus.ClassLoaderResolver clr)
clr - The ClassLoaderResolverpublic org.datanucleus.store.mapped.mapping.JavaTypeMapping getIdMapping()
public HashSet getAllClasses(org.datanucleus.store.connection.ManagedConnection conn)
throws SQLException
conn - Connection for this datastore.
SQLException - Thrown when an error occurs in the process.
public void addClass(org.datanucleus.store.mapped.MappedStoreData data,
org.datanucleus.store.connection.ManagedConnection conn)
throws SQLException
data - Data for the classconn - Connection to the datastore
SQLException - Thrown when an error occurs inserting the schema.
public void deleteClass(String class_name,
org.datanucleus.store.connection.ManagedConnection conn)
throws SQLException
class_name - Name of class to deleteconn - Connection to the datastore
SQLException - Thrown when an error occurs deleting the schema.
public void deleteAllClasses(org.datanucleus.store.connection.ManagedConnection conn)
throws SQLException
conn - Connection to the datastore
SQLException - Thrown when an error occurs deleting the schema.public org.datanucleus.store.mapped.mapping.JavaTypeMapping getMemberMapping(org.datanucleus.metadata.AbstractMemberMetaData mmd)
mmd - MetaData for the field whose mapping we want
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||