我一直在将 Hibernate 3.2 用于我的 J2EE 应用程序和 Spring 2.5。最近我想要一个 hibernate 3.5 的功能(BigInt Identity 支持)。所以我升级了我的 hibernate,现在我的查询遇到了一个不同的问题。
HQL 查询:-
select table from tableVO table where tableVO.subTableVO.id=:tableVO.id
SQL查询:-
select table_1_ID from table cross join subTable where subTable.id =table.id
我看到交叉连接正在由 Sybase ASE 不接受的休眠完成。我怎样才能解决这个问题?