Hibernate version:
Hibernate 3.0
I am new to Hibernate, so excuse me if this is a simple question. But I did look at the docs and could not find an answer.
I have the following in my hibernate.cfg.xml file:
Code:
<property name="show_sql">true</property>
This logs all the prepared statements such as:
Code:
insert into ST_STUDENT_VACC_EXEMPTION (AS_OF_DATE, UPDATED_BY, UPDATED_TS, STUDENT_ID, VACCINATION_ID, EXEMPTION_ID, STUDENT_EXEMPTION_ID) values (?, ?, ?, ?, ?, ?, ?)
However, is there a way to also get Hibernate to display the values that are used in the SQL statement rather than (or in addition to) the question-mark place holders?
Thanks
A