gpt4 book ai didi

hibernate - 运算符不存在 : bigint = bytea

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

这是我的代码:

     List<Long> ids= new ArrayList<Long>();
ids.add(10L);ids.add(11L);
String queryString ="select type_id from Types where parent_type_id in (:typeIds)";

SQLQuery sqlQuery = session.createSQLQuery(queryString);

sqlQuery.setParameter("typeIds", ids);
List<Object[]> results = sqlQuery.list();

我在执行上述查询时遇到此错误。仅供引用,当我将数组或 ArrayList 作为参数传递时,我刚刚看到这个问题。

ERROR util.JDBCExceptionReporter: ERROR: operator does not exist:
bigint = bytea Exception in thread "main"
org.hibernate.exception.SQLGrammarException: could not execute query
at
org.hibernate.exception.SQLStateConverter.convert(SQLStateConverter.java:67)
at
org.hibernate.exception.JDBCExceptionHelper.convert(JDBCExceptionHelper.java:43)

最佳答案

query.setParameterList("typeIds",ids);

使用 setParameterList(); 解决了这个问题

关于hibernate - 运算符不存在 : bigint = bytea,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9065154/

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