gpt4 book ai didi

mysql - 列表中有条件的 Hibernate SQLQuery

转载 作者:行者123 更新时间:2023-11-29 01:05:35 28 4
gpt4 key购买 nike

<分区>

我正在尝试将整数列表传递给 SQLQuery。然而它抛出一个错误说 "Exception : could not locate named parameter [ids]; nested exception is org.hibernate.QueryParameterException: could not locate named parameter [ids]"

这就是我的查询:

List<Integer> ids = new ArrayList<Integer>(5);
//Fill something in ids
return session.createSQLQuery("select igf.foo_id from group_feed igf where igf.id in (:ids)")
.setMaxResults(pageSize)
.setParameterList("ids", ids)
.setResultTransformer(Transformers.aliasToBean(GroupFeed.class))
.list();

我做错了什么?我不允许将 setParameterListHibernate SQLQuery 一起使用吗?我无法从 jBoss 中的 Hibernate 文档中了解到很多信息。

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com