为什么setParameter没有设置参数?

时间:2012-06-11 17:12:13

标签: sql hibernate parameters hql

我正在使用以下代码来(尝试)查询数据库:

Query query = session.createQuery("from Trace where service = :service");
query.setParameter("service", clientRequest[0]);

其中clientRequest [0]来自Strings数组,服务变量是我的POJO中的一个String,映射到MySQL数据库中的VARCHAR(45)。

当我运行此代码时,Hibernate将执行的SQL查询显示为:

Hibernate: select trace0_.traceId as traceId0_, trace0_.service as service0_, trace0_.longitude as longitude0_, trace0_.latitude as latitude0_, trace0_.timestamp as timestamp0_ from trace trace0_ where trace0_.service=?

这让我相信clientRequest [0]的值没有被正确设置为参数。

我已经检查过clientRequest [0]包含一个有效的String。我尝试了其他创建查询的方法,但这些方法都没有用,它们总是将服务显示为“?”,而如果我使用明显的:

Query query = session.createQuery("from Trace where service = 21");

它自然会给出正确的反应

Hibernate: select trace0_.traceId as traceId0_, trace0_.service as service0_, trace0_.longitude as longitude0_, trace0_.latitude as latitude0_, trace0_.timestamp as timestamp0_ from trace trace0_ where trace0_.service=21

什么可能阻止setParamater正常工作?

1 个答案:

答案 0 :(得分:6)

预计日志中的输出。 Hibernate不会在查询字符串中记录参数。参数设置正确。如果未设置参数,则会看到异常。

如果您还要记录参数值,可以从here找到一些说明。