These old forums are deprecated now and set to read-only. We are waiting for you on our new forums!
More modern, Discourse-based and with GitHub/Google/Twitter authentication built-in.

All times are UTC - 5 hours [ DST ]



Forum locked This topic is locked, you cannot edit posts or make further replies.  [ 2 posts ] 
Author Message
 Post subject: Question about transactions
PostPosted: Fri Jul 16, 2004 4:32 am 
Pro
Pro

Joined: Wed Oct 08, 2003 10:31 am
Posts: 247
I'm using Hibernate 2.1.3.
I have a peace of code:
Code:
some method() {

( ... )
transaction = session.beginTransaction();
         
// Some Hibernate inserts

// Some bulk updates with plain JDBC   
      
transaction.commit();
( ... )

}


As I've seen in the docs, when using direct JDBC transactions, I have to explicitly commit or rollback the transaction. Am I right?

My question: does the JDBC transaction and the Hibernate transaction work as a single transaction or do I have two separate transactions?
By commiting the JDBC transaction, is the Hibernate transaction aware of this?


Really need to clarify this issue.

Thanks in advance.


Top
 Profile  
 
 Post subject:
PostPosted: Fri Jul 16, 2004 4:37 am 
Hibernate Team
Hibernate Team

Joined: Mon Aug 25, 2003 9:11 pm
Posts: 4592
Location: Switzerland
The Hibernate Transaction is a wrapper API, it wraps the JDBC transaction (or whatever underlying transaction strategy you might have). This is really easy to understand. Look at the source coude of JDBCTransactionFactory if you need all the details.

_________________
JAVA PERSISTENCE WITH HIBERNATE
http://jpwh.org
Get the book, training, and consulting for your Hibernate team.


Top
 Profile  
 
Display posts from previous:  Sort by  
Forum locked This topic is locked, you cannot edit posts or make further replies.  [ 2 posts ] 

All times are UTC - 5 hours [ DST ]


You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum

Search for:
© Copyright 2014, Red Hat Inc. All rights reserved. JBoss and Hibernate are registered trademarks and servicemarks of Red Hat, Inc.