Business Components

Uses of Interface
oracle.jbo.Transaction

Packages that use Transaction
oracle.jbo Contains interfaces for client-side applications. 
oracle.jbo.domain   
oracle.jbo.server Contains the implementation of middle tier components. 
 

Uses of Transaction in oracle.jbo
 

Methods in oracle.jbo that return Transaction
 Transaction ApplicationModule.getTransaction()
          Gets the Application Module's current database transaction.
 

Uses of Transaction in oracle.jbo.domain
 

Methods in oracle.jbo.domain with parameters of type Transaction
 void SQLValue.setContext(DomainOwnerInterface owner, Transaction trans, java.lang.Object ctx)
           
 void BlobDomainInterface.loadFromDatabase(Transaction transaction)
          Loads the actual data of the "blob" type database attribute into memory.
 void BlobDomainInterface.saveToDatabase(Transaction transaction)
          Saves data in memory to a database "blob" type attribute.
 void BlobDomainInterface.saveToDatabase(Transaction transaction, java.lang.Object emptySQLObject)
           
 void DomainInterface.setContext(DomainOwnerInterface owner, Transaction trans, java.lang.Object ctx)
           
 void DateDomain.setContext(DomainOwnerInterface owner, Transaction trans, java.lang.Object ctx)
          Deprecated.  
 void NullValue.setContext(DomainOwnerInterface owner, Transaction trans, java.lang.Object ctx)
           
 void BlobDomain.loadFromDatabase(Transaction)
           
 void BlobDomain.setContext(DomainOwnerInterface, Transaction, java.lang.Object)
           
 void BlobDomain.saveToDatabase(Transaction)
           
 void BlobDomain.saveToDatabase(Transaction, java.lang.Object)
           
 void ClobDomain.loadFromDatabase(Transaction)
           
 void ClobDomain.setContext(DomainOwnerInterface, Transaction, java.lang.Object)
           
 void ClobDomain.saveToDatabase(Transaction)
           
 void ClobDomain.saveToDatabase(Transaction, java.lang.Object)
           
 void BFileDomain.loadFromDatabase(Transaction)
           
 void BFileDomain.setContext(DomainOwnerInterface, Transaction, java.lang.Object)
           
 void BFileDomain.saveToDatabase(Transaction)
           
 void BFileDomain.saveToDatabase(Transaction, java.lang.Object)
           
 void Ref.setContext(DomainOwnerInterface, Transaction, java.lang.Object)
           
 void Array.setContext(DomainOwnerInterface, Transaction, java.lang.Object)
           
 

Uses of Transaction in oracle.jbo.server
 

Subinterfaces of Transaction in oracle.jbo.server
 interface DBTransaction
          Interface representing the server side of database connections and transactions.
 

Classes in oracle.jbo.server that implement Transaction
 class DBTransactionImpl
          The superclass of classes representing connections of middle-tier objects to databases.
 class NullDBTransactionImpl
          Internal: Applications should not use this class.
 

Methods in oracle.jbo.server that return Transaction
 Transaction ApplicationModuleImpl.getTransaction()
          Returns the transaction information.
 

Methods in oracle.jbo.server with parameters of type Transaction
 java.lang.Object AttributeDefImpl.loadFromStatement(java.sql.PreparedStatement cs, int index, Transaction trans)
          Internal: Applications should not use this method.
 void SQLValueImpl.setContext(DomainOwnerInterface owner, Transaction trans, java.lang.Object ctx)
           
 java.lang.Object OLiteSQLBuilderImpl.doLoadFromStatement(java.lang.Object theTypeFactory, java.lang.Object theElemFactory, java.lang.Class theJavaType, java.sql.PreparedStatement ps, int index, Transaction trans)
           
 java.lang.Object OracleSQLBuilderImpl.doLoadFromStatement(java.lang.Object theTypeFactory, java.lang.Object theElemFactory, java.lang.Class theJavaType, java.sql.PreparedStatement ps, int index, Transaction trans)
           
 void SequenceImpl.setContext(DomainOwnerInterface owner, Transaction trans, java.lang.Object ctx)
           
 java.lang.Object SQLBuilder.doLoadFromStatement(java.lang.Object theTypeFactory, java.lang.Object theElemFactory, java.lang.Class theJavaType, java.sql.PreparedStatement ps, int index, Transaction trans)
          Loads an object from a result set.
 java.lang.Object OdbcSQLBuilderImpl.doLoadFromStatement(java.lang.Object theTypeFactory, java.lang.Object theElemFactory, java.lang.Class theJavaType, java.sql.PreparedStatement ps, int index, Transaction trans)
           
 


Business Components