Need help with Hibernate? Read this first:
http://www.hibernate.org/ForumMailingli ... AskForHelp
Hibernate version: 3.0.2
i have a program that performs a series of inserts, selects, updates within a single transaction block.
the program works fine with mysql MyISAM tables.
however, when i change the type of some of the involved tables into innoDB, some of the insertions is not performed after the commit, though the insert statement is displayed in log and the commit log is shown.
No exception nor rollback is raised and the log is showing nothing different from the MyISAM version.
The same piece of code works fine when I change the table type back to MyISAM.
I'm clueless here. Any hints?