hibernate hql 查询的日期列出现问题
我有一个 hql 查询..它获取两个日期之间使用的数据..我编写了这样的查询
来自 com.cod.model.Billing 其中 datecolumn 在 '2011-4-4' 和 '2011-4-20' 之间,
但我没有从这个查询中得到任何结果..我用 sql 查询在 mysql 中检查了这个查询。那里工作正常..但是如果我在 hql 中编写相同的查询,它会返回 null 结果 谁能提前告诉我我的查询有什么问题吗?谢谢
i hav a hql query..it gets the data used between two dates..i wriiten a query like this
from com.cod.model.Billing where datecolumn between '2011-4-4' and '2011-4-20'
but i didn't get any results from this query ..i checked out this query in mysql with sql query.there it's workng fine..but if i write same query in hql it returns null results
can any one say what's the problem in my query.thanx in advance
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
提到的日期必须是
java.util.Date
类型,而不是String
The dates mentioned have to be of the type
java.util.Date
and notString