Hi everyone,
I am using hibernate with hsqldb and I am reading from a file and inserting them into the hsqldb tables. My problem is that everything goes fine but when I check the tables, the rows are not inserted. For example, when running my code the following console message appears:
Code:
Hibernate: insert into tbl_software (SOFTWARE_ID, SOFTWARE_NAME) values (null, ?)
Hibernate: call identity()
However, when I check the tbl_software, its empty. Another issue that is stranger still is that the insertion works when I try to do it in debug mode by setting some breakpoint even though I just run through them without changing any code.
Please help guys!!
Thanks