关于javaweb的dao层sql语句的问题

其他都没问题,是sql语句提示错误Expectedpositionalparametercount:2,actualparameters:[18]。。。。。publicL... 其他都没问题,是sql语句提示错误 Expected positional parameter count: 2, actual parameters: [18] 。。。。。
public List getSelWsq(Integer id){
List<TEnterprise> list = new ArrayList<TEnterprise>();
String hql = "from TEtpSubsidies e where e.countyId=? and e.years='2014' and e.orgid not in (select es.orgid from TEtpSubsidies es where es.countyId=? and es.years='2015')";
/*String hql = "FROM TEnterprise et WHERE et.welfareNo in ("
+ "select e.welfareNo from TEtpSubsidies e "
+ "where e.countyId=? and e.years='2014')"; 可用*/
Query query = this.getSession().createQuery(hql);
query.setParameter(0,id);
/* query.setParameter(1,etpApp.getSbsqIn());*/
list = query.list();

return list;
}
在数据库sqlserver中 select * from T_EtpSubsidies e where e.countyId='18' and e.years='2014' and
e.orgid not in(select es.orgid from T_EtpSubsidies es
where es.countyId='18' and es.years='2015')
无问题可以查出
在添加 query.setParameter(1,id); 后,提示 could not resolve property: orgid of: com.welfare.entity.TEtpSubsidies。。。。。。
上面复制错了,是sql:FROM TEnterprise et WHERE et.welfareNo in (select e.welfareNo from TEtpSubsidies e where e.countyId=? and e.years='2014' and e.orgid not in (select es.orgid from TEtpSubsidies es where es.countyId=? and es.years='2015'))
展开
 我来答
砍出平成第一斧58
2015-11-30 · TA获得超过1567个赞
知道大有可为答主
回答量:2321
采纳率:86%
帮助的人:1197万
展开全部
sql有几个?就得设置几个参数query.setParameter(1,id); 第一个参数代表?号出现的顺序,从0开始,第二个参数是参数值。
你的sql中有3个?,一个被注视掉,所以设置query.setParameter(1,id);是要添加的。

could not resolve property: orgid of: com.welfare.entity.TEtpSubsidies这是另一个错误了,是你的实体配置有问题,去找对应的entity
更多追问追答
追问
sql使用传入的一个参数两次,之前的sql复制错了你看一下我的补充,注释掉的语句可以查出
追答
去找entity,然后和数据库中的字段去匹配,应该有写错的地方。
月牙马马
2015-11-30 · TA获得超过189个赞
知道小有建树答主
回答量:428
采纳率:0%
帮助的人:172万
展开全部
query.setParameter(1,id);
query.setParameter(2,id);
这个应该是 从1开始的吧 我看你是从0开始的
追问
对,传入的数据用了两次,query.setParameter(0,id);
query.setParameter(1,id);
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式