In the reference manual (
http://docs.jboss.org/hibernate/core/3. ... erence.pdf ), section 3.5 there is "table 3.9 Hibernate Log Categories"
In this table is listed "org.hibernate.type: Log all JDBC parameters".
What does this mean? I had assumed it meant it would show the values of query parameters, but enabling this in my logging configuration file does not do this.
With the following log4j configuarion
Code:
<logger additivity="false" name="org.hibernate.SQL">
<level value="DEBUG" />
<appender-ref ref="HIBERNATE" />
</logger>
<logger additivity="false" name="org.hibernate.type">
<level value="DEBUG" />
<appender-ref ref="HIBERNATE" />
</logger>
I see only SQL statements with "?" placeholders for the parameters.
What does the "org.hibernate.type" logging query really do and is there any way to see the values of query parameters?