Home >Database >Mysql Tutorial >hql-HQL中使用占位符查询mysql数据老是报错...

hql-HQL中使用占位符查询mysql数据老是报错...

WBOY
WBOYOriginal
2016-06-06 09:33:301210browse

mysqlhql

执行语句如下:
Session session = HibernateUtil.getSession();
String hql = "from Category where name=?";
Query query = session.createQuery(hql);
query.setString(0, "饮品");
错误:
ava.lang.NoSuchMethodError: org.hibernate.hql.antlr.HqlBaseParser.recover(Lantlr/RecognitionException;Lantlr/collections/impl/BitSet;)V

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn