hibernate hql 通过字段查询并返回List对象
hql:"selectnewTClassrecord(t.id,t.TMajororientation,t.TCourse,t.TTeacherByTeachingid,...
hql:"select new TClassrecord(t.id, t.TMajororientation,t.TCourse,t.TTeacherByTeachingid, t.TClasses, t.classaddress,t.lessontime,t.lessoncount,t.status,t.TTeacherByCheckid, t.attids) from TClassrecord"。
TMajororientation、TCourse、TTeacherByTeachingid、TClasses、TTeacherByCheckid都是对象,直接查询会报一个错误,但是我想要的返回的对象就是这样。
报错如下:
ERROR: ORA-00918: 未明确定义列 展开
TMajororientation、TCourse、TTeacherByTeachingid、TClasses、TTeacherByCheckid都是对象,直接查询会报一个错误,但是我想要的返回的对象就是这样。
报错如下:
ERROR: ORA-00918: 未明确定义列 展开
2个回答
展开全部
返回的是对象数组
如果返回的List 为list
Iterator iterator = list.iterator();
while(iterator.hasNext()){
//你返回的结果集都封装到了Object数组中。
Object[] obj = (Object[])iterator.next();
}
这样可以么?
如果返回的List 为list
Iterator iterator = list.iterator();
while(iterator.hasNext()){
//你返回的结果集都封装到了Object数组中。
Object[] obj = (Object[])iterator.next();
}
这样可以么?
追问
你回答这个我知道。但我想要的通过我上面写的那条hql语句查询。并返回List集合,而不是返回List
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
from TClassrecord t
是不是后面的t 掉了,
既然查是的TClassrecord的单表对象,你为什么不直接
hql "from TClassrecord"试一下
是不是后面的t 掉了,
既然查是的TClassrecord的单表对象,你为什么不直接
hql "from TClassrecord"试一下
本回答被网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询