-->
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.  [ 1 post ] 
Author Message
 Post subject: [ASK] Save, Update Sometimes Doesn't Work
PostPosted: Wed May 02, 2012 12:39 pm 
Newbie

Joined: Wed May 02, 2012 12:28 pm
Posts: 1
Hi everyone, i have a problem with Save, Update, sometimes it doesnt working.
i dont really know how to explain it, but here's the code that im using

Code:
    static SessionFactory session = NewHibernateUtil.getSessionFactory();

    public Session membukaSession(){
      return session.openSession();
    }

     public void addBarang(Barang b) {
        Session sess = this.membukaSession();
        org.hibernate.Transaction t = sess.beginTransaction();
        sess.save(b);
        t.commit();
    }
   

    public void updateBarang(Barang b) {
        Session sess = this.membukaSession();
        org.hibernate.Transaction t = sess.beginTransaction();
        sess.merge(b);
        t.commit();
    }



If you need some code that maybe im using, please do tell me.

Please help me fix this.
Thx in advance


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

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.