Uses of Class
org.hibernate.jdbc.JDBCContext

Packages that use JDBCContext
org.hibernate.ejb.transaction   
org.hibernate.engine This package contains classes that are "shared" by other packages, and implementations of some key algorithms. 
org.hibernate.envers.entities.mapper.relation.lazy   
org.hibernate.impl This package contains implementations of the central Hibernate APIs, especially the Hibernate session. 
org.hibernate.jdbc This package abstracts the mechanism for dispatching SQL statements to the database, and implements interaction with JDBC. 
org.hibernate.transaction This package abstracts the underlying transaction mechanism (JTA or JDBC) and provides strategies for obtaining application server TransactionManagers. 
 

Uses of JDBCContext in org.hibernate.ejb.transaction
 

Methods in org.hibernate.ejb.transaction with parameters of type JDBCContext
 Transaction JoinableCMTTransactionFactory.createTransaction(JDBCContext jdbcContext, TransactionFactory.Context transactionContext)
           
 boolean JoinableCMTTransaction.isTransactionInProgress(JDBCContext jdbcContext, TransactionFactory.Context transactionContext)
           
 boolean JoinableCMTTransactionFactory.isTransactionInProgress(JDBCContext jdbcContext, TransactionFactory.Context transactionContext, Transaction transaction)
           
 

Constructors in org.hibernate.ejb.transaction with parameters of type JDBCContext
JoinableCMTTransaction(JDBCContext jdbcContext, TransactionFactory.Context transactionContext)
           
 

Uses of JDBCContext in org.hibernate.engine
 

Methods in org.hibernate.engine that return JDBCContext
 JDBCContext SessionImplementor.getJDBCContext()
           
 

Uses of JDBCContext in org.hibernate.envers.entities.mapper.relation.lazy
 

Methods in org.hibernate.envers.entities.mapper.relation.lazy that return JDBCContext
 JDBCContext AbstractDelegateSessionImplementor.getJDBCContext()
           
 

Uses of JDBCContext in org.hibernate.impl
 

Methods in org.hibernate.impl that return JDBCContext
 JDBCContext StatelessSessionImpl.getJDBCContext()
           
 JDBCContext SessionImpl.getJDBCContext()
           
 

Uses of JDBCContext in org.hibernate.jdbc
 

Methods in org.hibernate.jdbc that return JDBCContext
static JDBCContext JDBCContext.deserialize(ObjectInputStream ois, JDBCContext.Context context, Interceptor interceptor)
          Custom deserialization routine used during deserialization of a Session/PersistenceContext for increased performance.
 

Methods in org.hibernate.jdbc with parameters of type JDBCContext
static ConnectionManager ConnectionManager.deserialize(ObjectInputStream ois, SessionFactoryImplementor factory, Interceptor interceptor, ConnectionReleaseMode connectionReleaseMode, JDBCContext jdbcContext)
           
 

Uses of JDBCContext in org.hibernate.transaction
 

Fields in org.hibernate.transaction declared as JDBCContext
protected  JDBCContext CMTTransaction.jdbcContext
           
 

Methods in org.hibernate.transaction with parameters of type JDBCContext
 Transaction TransactionFactory.createTransaction(JDBCContext jdbcContext, TransactionFactory.Context context)
          Begin a transaction and return the associated Transaction instance.
 Transaction JTATransactionFactory.createTransaction(JDBCContext jdbcContext, TransactionFactory.Context transactionContext)
          Begin a transaction and return the associated Transaction instance.
 Transaction JDBCTransactionFactory.createTransaction(JDBCContext jdbcContext, TransactionFactory.Context transactionContext)
          Begin a transaction and return the associated Transaction instance.
 Transaction CMTTransactionFactory.createTransaction(JDBCContext jdbcContext, TransactionFactory.Context transactionContext)
           
 boolean TransactionFactory.isTransactionInProgress(JDBCContext jdbcContext, TransactionFactory.Context transactionContext, Transaction transaction)
          Determine whether an underlying transaction is in progress.
 boolean JTATransactionFactory.isTransactionInProgress(JDBCContext jdbcContext, TransactionFactory.Context transactionContext, Transaction transaction)
          Determine whether an underlying transaction is in progress.
 boolean JDBCTransactionFactory.isTransactionInProgress(JDBCContext jdbcContext, TransactionFactory.Context transactionContext, Transaction transaction)
          Determine whether an underlying transaction is in progress.
 boolean CMTTransactionFactory.isTransactionInProgress(JDBCContext jdbcContext, TransactionFactory.Context transactionContext, Transaction transaction)
           
 

Constructors in org.hibernate.transaction with parameters of type JDBCContext
CacheSynchronization(TransactionFactory.Context ctx, JDBCContext jdbcContext, Transaction transaction, Transaction tx)
           
CMTTransaction(JDBCContext jdbcContext, TransactionFactory.Context transactionContext)
           
JDBCTransaction(JDBCContext jdbcContext, TransactionFactory.Context transactionContext)
           
JTATransaction(UserTransaction userTransaction, JDBCContext jdbcContext, TransactionFactory.Context transactionContext)
           
 



Copyright © 2001-2010 Red Hat, Inc. All Rights Reserved.