Try this for inserting,
October 24, 2008 at 5:55 PM
I too faced this problem and solved it like this u need to add the following lines session = sessionFactory.openSession(); -------------------------------------------- Transaction txn = session.beginTransaction(); --------------------------------------------- and after session.save() add ------------- txn.commit() ------------- this problem i faced with oracle which does not insert data without commit
View All Comments
| View Tutorial