-->
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: EntityManager & app trans
PostPosted: Mon Jul 11, 2005 11:34 am 
Expert
Expert

Joined: Sat Oct 25, 2003 8:49 am
Posts: 490
Location: Vrhnika, Slovenia
Hibernate version: 3.1

What's the right usage here?

In http://trailblazer.demo.jboss.com/EJB3Trail/services/apptrans/ it is used:
Code:
@Remove
  public void checkout() throws Exception {
    em.commit ()
  }

But there is no commit() method on current EM (http://cvs.sourceforge.net/viewcvs.py/hibernate/HibernateExt/ejb-api/src/javax/persistence/EntityManager.java?view=markup)

In trail.apptrans.CalculatorBean:
Code:
  @Remove
  public void checkout() {
    // commits all changes
    em.flush();
  }


Maybe this?
Code:
  @Remove
  public void checkout() {
    // commits all changes
    em.getTransaction().commit();
  }


Rgds, Ales


Top
 Profile  
 
 Post subject:
PostPosted: Mon Jul 11, 2005 12:43 pm 
Hibernate Team
Hibernate Team

Joined: Sun Sep 14, 2003 3:54 am
Posts: 7256
Location: Paris, France
I'll forward to michael
Thanks

_________________
Emmanuel


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.