浏览 1484 次
锁定老帖子 主题:难道是hibernate装聪明?
精华帖 (0) :: 良好帖 (0) :: 新手帖 (0) :: 隐藏帖 (0)
|
|
---|---|
作者 | 正文 |
发表时间:2008-09-20
今天开发中遇到一个奇怪的hibernate错误 XML语言
:
1
<id
name=
"apprId"
type=
"java.lang.Long"
>
2 <column name= "APPR_ID" precision= "11" scale= "0" /> 3 <generator class= "assigned" /> 4 </id> 5 <property name= "Id" type= "java.lang.Long" > 6 <column name= "ID" precision= "11" scale= "0" /> 7 </property> 而我当执行这样的hibernate的HQL的时候 SQL语言
:
1
from
RcUApprInfo as
model where
model.Id = ?
SQL语言
:
1
select
...... from
rc_u_appr_info where
as
model where
model.APPR_ID = ?
跟踪了好几遍,都是这样
在确定自己的代码没问题后,想到可能是hibernate理解错了 声明:ITeye文章版权属于作者,受法律保护。没有作者书面许可不得转载。
推荐链接
|
|
返回顶楼 | |