gpt4 book ai didi

java - 传递多个值。获取 org.hibernate.exception.SQLGrammarException : could not extract ResultSet] with root cause

转载 作者:行者123 更新时间:2023-11-30 06:49:04 36 4
gpt4 key购买 nike

我正在从文本文件中读取查询,并依赖于 UI 中的过滤器,通过字符串缓冲区,我附加了额外的查询。 Passing multiple fields like this 。像上面一样传递多个 id 来获取数据

我收到嵌套异常是 javax.persistence.PersistenceException: org.hibernate.exception.SQLGrammarException: 无法提取 ResultSet] 其根本原因java.sql.SQLSyntaxErrorException:ORA-01722:无效的数字。

我正在使用 q.setParameter,它是 Java 持久性查询。所以我没有 paramterList。由于值之间有逗号,我得到了无效的数字。您能帮我做什么来支持多个值并获取数据吗?

我的代码示例:

StringBuffer q = new StringBuffer();

q.append(queryFromPropertiesFile);

if( model.getId()!=null && ! model.getId().isEmpty())
q.append(" and emp.id IN (:id)");

Query query = entity.createNativeQuery(q.toString());

query.setParameter("id", model.getId());

最佳答案

您需要传递一个 List 对象(即,使用 , 分隔符分割字符串),然后传递该 id 列表(List object)到setParameter,如下所示:

List<String> idsList = new ArrayList<>();
String[] ids = model.getId().split(",");
for(String id : ids) {
idsList.add(id);
}

query.setParameterList("id", idsList);

关于java - 传递多个值。获取 org.hibernate.exception.SQLGrammarException : could not extract ResultSet] with root cause,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43162107/

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