Uses of Class
com.triactive.jdo.store.StoreManager.MgmtTransaction

Packages that use StoreManager.MgmtTransaction
com.triactive.jdo.store.mapping   
com.triactive.jdo.store.sql   
 

Uses of StoreManager.MgmtTransaction in com.triactive.jdo.store.mapping
 

Methods in com.triactive.jdo.store.mapping with parameters of type StoreManager.MgmtTransaction
 void SetMapping.defineStorage(Table table, StoreManager.MgmtTransaction mtx)
           
 void SetMapping.defineConstraints(BaseTable table, StoreManager.MgmtTransaction mtx)
           
 void ObjectReferenceDatastoreIdMapping.defineStorage(Table table, StoreManager.MgmtTransaction mtx)
           
 void ObjectReferenceDatastoreIdMapping.defineConstraints(BaseTable table, StoreManager.MgmtTransaction mtx)
          Causes the mapping object to define whatever constraints it needs on its backing storage, relative to the specified table.
 void ObjectDatastoreIdMapping.defineStorage(Table table, StoreManager.MgmtTransaction mtx)
          Causes the mapping object to define whatever backing storage it needs, relative to the specified table.
 void ObjectDatastoreIdMapping.defineConstraints(BaseTable table, StoreManager.MgmtTransaction mtx)
          Causes the mapping object to define whatever constraints it needs on its backing storage, relative to the specified table.
abstract  void Mapping.defineStorage(Table table, StoreManager.MgmtTransaction mtx)
          Causes the mapping object to define whatever backing storage it needs, relative to the specified table.
abstract  void Mapping.defineConstraints(BaseTable table, StoreManager.MgmtTransaction mtx)
          Causes the mapping object to define whatever constraints it needs on its backing storage, relative to the specified table.
 void MapMapping.defineStorage(Table table, StoreManager.MgmtTransaction mtx)
           
 void MapMapping.defineConstraints(BaseTable table, StoreManager.MgmtTransaction mtx)
           
 void ColumnMapping.defineStorage(Table table, StoreManager.MgmtTransaction mtx)
          Causes the mapping object to define whatever backing storage it needs, relative to the specified table. Depending on the type of mapping, this may mean adding columns to the table, constructing other related table objects, or both.

Storage in this case means only tables, columns, and primary keys. Other candidate keys, foreign keys, and indexes are added by Mapping.defineConstraints(com.triactive.jdo.store.sql.BaseTable, com.triactive.jdo.store.StoreManager.MgmtTransaction).

The StoreManager will never call this method more than once..

 void ColumnMapping.defineConstraints(BaseTable table, StoreManager.MgmtTransaction mtx)
          Causes the mapping object to define whatever constraints it needs on its backing storage, relative to the specified table. Depending on the type of mapping, this may mean adding any or all of candidate keys, foreign keys, or indexes to the specified table and/or other tables.

This method only applies to base tables. It will always be called after calling Mapping.defineStorage(com.triactive.jdo.store.sql.Table, com.triactive.jdo.store.StoreManager.MgmtTransaction) and is passed the same table argument.

The StoreManager will never call this method more than once..

 

Uses of StoreManager.MgmtTransaction in com.triactive.jdo.store.sql
 

Methods in com.triactive.jdo.store.sql with parameters of type StoreManager.MgmtTransaction
 void View.initialize(StoreManager.MgmtTransaction mtx)
           
 void View.create(StoreManager.MgmtTransaction mtx)
           
 boolean View.validate(StoreManager.MgmtTransaction mtx)
           
 void View.drop(StoreManager.MgmtTransaction mtx)
           
protected  java.util.List View.getSqlCreateStatements(StoreManager.MgmtTransaction mtx)
           
protected  java.util.List View.getSqlDropStatements(StoreManager.MgmtTransaction mtx)
           
 void Table.initialize(StoreManager.MgmtTransaction mtx)
           
 boolean Table.exists(StoreManager.MgmtTransaction mtx)
          Tests if the database table exists.
 void Table.create(StoreManager.MgmtTransaction mtx)
           
 boolean Table.validate(StoreManager.MgmtTransaction mtx)
           
 void Table.drop(StoreManager.MgmtTransaction mtx)
           
 void SetTable.initialize(StoreManager.MgmtTransaction mtx)
           
 void SetTable.initializeConstraints(StoreManager.MgmtTransaction mtx)
           
 void SchemaTable.initialize(StoreManager.MgmtTransaction mtx)
           
 void SchemaTable.initializeConstraints(StoreManager.MgmtTransaction mtx)
           
 boolean SchemaTable.exists(StoreManager.MgmtTransaction mtx)
           
 TableMetadata SchemaTable.getTableMetadata(MetaData md, StoreManager.MgmtTransaction mtx)
          Retrieve the TableMetadata for the given MetaData.
 java.lang.String SchemaTable.getJavaName(int tableID, StoreManager.MgmtTransaction mtx)
           
 int SchemaTable.getNextOIDHiValue(int tableID, StoreManager.MgmtTransaction mtx)
           
 java.util.List SchemaTable.getAllTableMetadata(StoreManager.MgmtTransaction mtx)
           
 java.util.List SchemaTable.getAllTableMetadata(java.lang.String ascOrDesc, StoreManager.MgmtTransaction mtx)
           
 void SchemaTable.dropTablesFor(java.lang.Class[] classes, StoreManager.MgmtTransaction mtx)
           
 void SchemaTable.dropAllTables(StoreManager.MgmtTransaction mtx)
           
 void ProbeTable.initialize(StoreManager.MgmtTransaction mtx)
           
 void ProbeTable.initializeConstraints(StoreManager.MgmtTransaction mtx)
           
 java.lang.String ProbeTable.findSchemaName(StoreManager.MgmtTransaction mtx)
           
 void MapTable.initialize(StoreManager.MgmtTransaction mtx)
           
 void MapTable.initializeConstraints(StoreManager.MgmtTransaction mtx)
           
 void ClassView.initialize(StoreManager.MgmtTransaction mtx)
           
protected  java.util.List ClassView.getSqlCreateStatements(StoreManager.MgmtTransaction mtx)
           
 void ClassBaseTable.initialize(StoreManager.MgmtTransaction mtx)
           
 void ClassBaseTable.initializeConstraints(StoreManager.MgmtTransaction mtx)
           
 void BaseTable.initialize(StoreManager.MgmtTransaction mtx)
           
 void BaseTable.initializeConstraints(StoreManager.MgmtTransaction mtx)
           
 void BaseTable.create(StoreManager.MgmtTransaction mtx)
           
 boolean BaseTable.validate(StoreManager.MgmtTransaction mtx)
           
 boolean BaseTable.validateConstraints(StoreManager.MgmtTransaction mtx)
           
 void BaseTable.drop(StoreManager.MgmtTransaction mtx)
           
 void BaseTable.dropConstraints(StoreManager.MgmtTransaction mtx)
           
protected  java.util.List BaseTable.getSqlCreateStatements(StoreManager.MgmtTransaction mtx)
           
protected  java.util.List BaseTable.getSqlDropStatements(StoreManager.MgmtTransaction mtx)
           
 



Copyright © 2001-2007 The TJDO Project All Rights Reserved.