getHibernateTemplate().find多张表查询
getHibernateTemplate().find多张表查询怎么写.....就是把下面的SQL语句弄进去??selecta.car_Name,a.IC_CODE,a....
getHibernateTemplate().find多张表查询怎么写.....
就是把下面的SQL语句弄进去??
select a.car_Name,a.IC_CODE,a.BUS_TYPE,a.LIST_STATUS from Ic_Sr_Info a union all
select b.car_Name,b.IC_CODE,b.BUS_TYPE,b.LIST_STATUS from tasks_bill_head b union all
select c.car_Name,c.IC_CODE,c.BUS_TYPE,c.LIST_STATUS from long_in_report c
将3张表拼在一起 展开
就是把下面的SQL语句弄进去??
select a.car_Name,a.IC_CODE,a.BUS_TYPE,a.LIST_STATUS from Ic_Sr_Info a union all
select b.car_Name,b.IC_CODE,b.BUS_TYPE,b.LIST_STATUS from tasks_bill_head b union all
select c.car_Name,c.IC_CODE,c.BUS_TYPE,c.LIST_STATUS from long_in_report c
将3张表拼在一起 展开
1个回答
展开全部
继承HibernateDaoSupport类,执行方法:
SQLQuery sqlQuery = getSession().createSQLQuery(sql);
sqlQuery.executeUpdate();或者List list = sqlQuery.list();
sql就是你自己拼的sql语句。
SQLQuery sqlQuery = getSession().createSQLQuery(sql);
sqlQuery.executeUpdate();或者List list = sqlQuery.list();
sql就是你自己拼的sql语句。
更多追问追答
追问
我在DaoHibernate里写了
public List query(BacklogModel backlogModel) {
try {
SQLQuery sqlQuery = getSession().createSQLQuery("我的sql");
List list = sqlQuery.list();
return list;
} catch (Exception e) {
log.debug(e.toString());
}
return null;
}
myelipse里给出的错误是 都是空
Could not find the property [icCode]. Either the bean or property is null
我的代码是不是写错??
追答
你的代码里有 icCode这个东西??你的类继承HibernateDaoSupport类了么
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询