-->
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: Do you really need transaction forsimple query?
PostPosted: Fri Aug 03, 2007 1:41 pm 
Newbie

Joined: Mon Feb 21, 2005 9:31 pm
Posts: 4
Location: Colorado
I have noticed in many examples that the user begins and closes a transaction when all there is in the operation is a simple query. Can some one explain why the transaction is established. Is there any benefit in not creating a transaction?

Example code to illustrate:

Code:
      Session session = HibernateUtil.getSessionFactory().openSession();
      Transaction tx = null;
      try {
         tx = session.beginTransaction();
         result = session.createCriteria(messages.class).list();
         tx.commit();
         tx = null;
      } catch (HibernateException e) {
         log.error("Could not acquire list of Messages", e);
      }
      finally {
         session.close();
      }

_________________
Regards,
Bud Curtis

Another program, another buck!


Top
 Profile  
 
 Post subject:
PostPosted: Fri Aug 03, 2007 1:47 pm 
Hibernate Team
Hibernate Team

Joined: Mon Aug 25, 2003 9:11 pm
Posts: 4592
Location: Switzerland
http://hibernate.org/Documentation/NonT ... CommitMode

_________________
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.