Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

This question already has an answer here:

if I set

<property name="show_sql">true</property>

in my hibernate.cfg.xml configuration file in the console I can see the SQL.

But it's not real SQL... Can I see the SQL code that will be passed directly to database?

Example:

I see

select this_.code from true.employee this_ where this_.code=?

Can I see

select employee.code from employee where employee.code=12

the real SQL?

share|improve this question
3  
Hibernate uses prepared statements internally, so it doesn't ever have the SQL in a format where they values would be embedded – Narayan Mar 29 '10 at 9:20
5  
Does it really say true.employee? – Stephen Denne Mar 29 '10 at 9:50
the only working solution I have found is here : mkyong.com/hibernate/… – Christian Achilli Jan 23 at 17:10

marked as duplicate by Conrad Frix, Teja Kantamneni, codelark, sclv, vstm Mar 15 at 16:30

This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.

5 Answers

Can I see (...) the real SQL

If you want to see the SQL sent directly to the database (that is formatted similar to your example), you'll have to use some kind of jdbc driver proxy like P6Spy (or log4jdbc).

Alternatively you can enable logging of the following categories (using a log4j.properties file here):

log4j.logger.org.hibernate.SQL=DEBUG
log4j.logger.org.hibernate.type=TRACE

The first is equivalent to hibernate.show_sql=true, the second prints the bound parameters among other things.

Reference

share|improve this answer
3  
I like P6Spy, especially when running unit tests, because it'll also give you the result set of your query in addition to the bind parameter values. – elduff Mar 29 '10 at 16:59
can you post the log output example? – Scarlett Mar 15 '12 at 8:13
@Pascal I don't think you should say "If you want to see it formatted exactly as in your example" because it it depends highly on what database he is using and if hibernate chooses to batch/prepare the statement. – Adam Gent Jan 2 at 21:24
up vote 49 down vote accepted

log4j.properties

log4j.logger.org.hibernate=INFO, hb
log4j.logger.org.hibernate.SQL=DEBUG
log4j.logger.org.hibernate.type=TRACE
log4j.logger.org.hibernate.hql.ast.AST=info
log4j.logger.org.hibernate.tool.hbm2ddl=warn
log4j.logger.org.hibernate.hql=debug
log4j.logger.org.hibernate.cache=info
log4j.logger.org.hibernate.jdbc=debug

log4j.appender.hb=org.apache.log4j.ConsoleAppender
log4j.appender.hb.layout=org.apache.log4j.PatternLayout
log4j.appender.hb.layout.ConversionPattern=HibernateLog --> %d{HH:mm:ss} %-5p %c - %m%n
log4j.appender.hb.Threshold=TRACE

hibernate.cfg.xml

<property name="show_sql">true</property>
<property name="format_sql">true</property>
<property name="use_sql_comments">true</property>
share|improve this answer
is there a way we can get information about bind parameters in the logs? – Rachel Jan 24 '12 at 18:53
Awesome! thanks – llazzaro Sep 18 '12 at 3:49
@Rachel, what more than logging such as TRACE [BasicBinder] binding parameter [1] as [VARCHAR] - john doe do you need? – Arjan Dec 8 '12 at 12:52

If you can already see the SQL being printed, that means you have the code below in your hibernate.cfg.xml:

<property name="show_sql">true</property>

To print the bind parameters as well, add the following to your log4j.properties file:

log4j.logger.net.sf.hibernate.type=debug
share|improve this answer

select this_.code from true.employee this_ where this_.code=? is what will be sent to your database.

this_ is an alias for that instance of the employee table.

share|improve this answer

Worth noting that the code you see is sent to the database as is, the queries are sent separately to prevent SQL injection. AFAIK The ? marks are placeholders that are replaced by the number params by the database, not by hibernate.

share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.