Uses of Interface
org.axiondb.Transaction

Packages that use Transaction
org.axiondb Core interfaces, identifiers, and exceptions. 
org.axiondb.engine Core database machinery. 
org.axiondb.jdbc JDBC implementations. 
 

Uses of Transaction in org.axiondb
 

Methods in org.axiondb that return Transaction
 Transaction TransactionManager.createTransaction()
          Create a new Transaction.
 

Methods in org.axiondb with parameters of type Transaction
 void TransactionManager.abortTransaction(Transaction t)
          Abort the given Transaction.
 void TransactionManager.commitTransaction(Transaction t)
          Commit the given Transaction.
 

Uses of Transaction in org.axiondb.engine
 

Classes in org.axiondb.engine that implement Transaction
 class SnapshotIsolationTransaction
          A Transaction implementation that provides "snapshot isolation", which supports TRANSACTION_SERIALIZABLE isolation without locking.
 

Methods in org.axiondb.engine that return Transaction
 Transaction TransactionManagerImpl.createTransaction()
           
 

Methods in org.axiondb.engine with parameters of type Transaction
 void TransactionManagerImpl.abortTransaction(Transaction t)
           
 void TransactionManagerImpl.commitTransaction(Transaction t)
           
 

Uses of Transaction in org.axiondb.jdbc
 

Methods in org.axiondb.jdbc that return Transaction
 Transaction AxionConnection.forgetCurrentTransaction()
           
 Transaction AxionConnection.getCurrentTransaction()
           
 

Methods in org.axiondb.jdbc with parameters of type Transaction
 void AxionResultSet.setTransaction(TransactionManager manager, Transaction transaction)