Business Components

Uses of Interface
oracle.jbo.Transaction

Packages that use Transaction
oracle.jbo Contains interfaces for client-side applications. 
oracle.jbo.domain The oracle.jbo.domain.* classes, also known as the "JBO Oracle Domains", provide lightweight wrappers for the Java representation of the Oracle data types (that is, the oracle.sql.* classes). 
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
 

Fields in oracle.jbo.domain declared as Transaction
protected  Transaction Struct.mTxn
          Internal: Applications should not use this field.
 

Methods in oracle.jbo.domain with parameters of type Transaction
 void Struct.setContext(DomainOwnerInterface owner, Transaction trans, java.lang.Object ctx)
          Internal: Applications should not use this method.
 void SQLValue.setContext(DomainOwnerInterface owner, Transaction trans, java.lang.Object ctx)
           
 void BFileDomain.loadFromDatabase(Transaction xAct)
          Internal: Applications should not use this method.
 void BFileDomain.setContext(DomainOwnerInterface owner, Transaction trans, java.lang.Object ctx)
          Internal: Applications should not use this method.
 void BFileDomain.saveToDatabase(Transaction xAct)
          Internal: Applications should not use this method.
 void BFileDomain.saveToDatabase(Transaction xAct, java.lang.Object emptySQLObject)
          Internal: Applications should not use this method.
 void Ref.setContext(DomainOwnerInterface owner, Transaction trans, java.lang.Object fac)
          Internal: Applications should not invoke this method.
 void BlobDomainInterface.loadFromDatabase(Transaction transaction)
          Internal: Applications should not use this method.
 void BlobDomainInterface.saveToDatabase(Transaction transaction)
          Internal: Applications should not use this method.
 void BlobDomainInterface.saveToDatabase(Transaction transaction, java.lang.Object emptySQLObject)
          Internal: Applications should not use this method.
 void Char.setContext(DomainOwnerInterface owner, Transaction trans, java.lang.Object ctx)
          Internal: Applications should not use this method.
 void Sequence.setContext(DomainOwnerInterface owner, Transaction trans, java.lang.Object ctx)
          Internal: Applications should not use this method.
 void Number.setContext(DomainOwnerInterface owner, Transaction trans, java.lang.Object ctx)
          Internal: Applications should not invoke this method.
 void RowID.setContext(DomainOwnerInterface owner, Transaction trans, java.lang.Object ctx)
          Internal: Applications should not invoke this method.
 void ClobDomain.loadFromDatabase(Transaction xAct)
          Internal: Applications should not use this method.
 void ClobDomain.setContext(DomainOwnerInterface owner, Transaction trans, java.lang.Object ctx)
          Internal: Applications should not use this method.
 void ClobDomain.saveToDatabase(Transaction xAct)
          Internal: Applications should not use this method.
 void ClobDomain.saveToDatabase(Transaction xAct, java.lang.Object emptySQLObject)
          Internal: Applications should not use this method.
 void Array.setContext(DomainOwnerInterface owner, Transaction trans, java.lang.Object fac)
          Internal: Applications should not use this method.
 void Raw.setContext(DomainOwnerInterface owner, Transaction trans, java.lang.Object ctx)
          Internal: Applications should not invoke this method.
 void BlobDomain.loadFromDatabase(Transaction xAct)
          Internal: Applications should not use this method.
 void BlobDomain.setContext(DomainOwnerInterface owner, Transaction trans, java.lang.Object ctx)
          Internal: Applications should not use this method.
 void BlobDomain.saveToDatabase(Transaction xAct)
          Internal: Applications should not use this method.
 void BlobDomain.saveToDatabase(Transaction xAct, java.lang.Object emptySQLObject)
          Internal: Applications should not use this method.
 void DomainInterface.setContext(DomainOwnerInterface owner, Transaction trans, java.lang.Object ctx)
          Internal: Applications should not use this method.
 void Date.setContext(DomainOwnerInterface owner, Transaction trans, java.lang.Object ctx)
          Internal: Applications should not invoke this method.
 void DateDomain.setContext(DomainOwnerInterface owner, Transaction trans, java.lang.Object ctx)
          Deprecated.  
 void NullValue.setContext(DomainOwnerInterface owner, Transaction trans, java.lang.Object ctx)
          Internal: Applications should not invoke this method.
 

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 BaseSQLBuilderImpl.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)
          Internal: Applications should not use this method.
 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.
 


Business Components