The logging of sql statements seems to be real nice except for when it runs inserts/updates, it logs stuff like this....
Code:
Hibernate: insert into Parents (name, Version, Id) values (?, ?, ?)
Hibernate: insert into Children (name, parent_id, Version, Id) values (?, ?, ?, ?)
Hibernate: insert into Children (name, parent_id, Version, Id) values (?, ?, ?, ?)
Hibernate: update Parents set name=?, Version=? where Id=? and Version=?
I want to see what was inserted or what those question marks really are. Is there a way to change that? I am especially trying to figure out why that last update was run....the three inserts should have been enough.
thanks,
dean