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