对于这样一个简单的查询,DB2 在hibernate 中使用时会无缘无故地抛出SQL 错误。
我想我已经为休眠属性设置了 DB2 的所有设置,因为其他一些查询运行良好。
SQLException for SQL [/* criteria query */
select this_.col1,this_.col2,this2_.col1,this2_.col3
from TABLE this_
left outer join TABLE1 this2_
on this_.TAB1_ID=this2_.ID
where this2_.ID=?
]; SQL state [36001]; error code [-243]; could not execute query using scroll; nested exception is org.hibernate.exception.GenericJDBCException: could not execute query using scroll
我尝试在 IBM 网站上查找,它根本没有帮助,因为相同的测试用例在 hsqldb 上运行良好。
注意:Hibernate 为我生成查询我没有生成查询。
任何帮助将非常感激。
谢谢斯里达尔。