My question is very general, When Hibernate logging is set to true, we can see what Hibernate writes inside the console as some sort of Hibernate SQL language.
Is it possible to translate this, or even get it in the console as regular SQL code? So it would say something like INSERT product('name', 'price') WHERE.. etc..
Instead of the Hibernate language we currently see. Thanks in advance!
EDIT: To clarify, I would like to copy what Hibernate writes in my console, and be able to paste it into my SQL Workbench and insert it as an SQL command. (IF this is possible that is.) Thanks!