如果我设置
<property name="show_sql">true</property>
在控制台的hibernate.cfg.xml配置文件中,我可以看到SQL。
但它不是真正的 SQL…我能看到SQL代码,将直接传递到数据库吗?
例子:
我看到
select this_.code from true.employee this_ where this_.code=?
我能看看吗
select employee.code from employee where employee.code=12
真正的 SQL?