1.

How Can I Turn On Logging For Hibernate In Order To See Sql Statements, Input Parameters And Output Results?

Answer»

EDIT your Config.groovy file. FIND the line with:

HIBERNATE = "off"
and replace it with:
hibernate.SQL="trace,STDOUT"
hibernate.type="trace,stdout"

Edit your Config.groovy file. Find the line with:

hibernate = "off"
and replace it with:
hibernate.SQL="trace,stdout"
hibernate.type="trace,stdout"



Discussion

No Comment Found