Hibernate 中的日期文字

发布于 2024-12-08 08:39:46 字数 220 浏览 0 评论 0原文

我想知道如何在 Hibernate 查询语言中使用日期文字。我在我的 JPA 项目(作为 Eclipselink 提供者)中执行了以下操作,并且它有效。

SELECT m FROM Me m WHERE m.dob <= {d '1984-10-06'}

但当我将 Hibernate (V 3.6.7) 更改为 JPA 项目的提供程序时,这不起作用。

I wonder how to use date literals in Hibernate query language. I did as follows in my JPA project (as Eclipselink the provider) and it works.

SELECT m FROM Me m WHERE m.dob <= {d '1984-10-06'}

But this does not work when I change Hibernate (V 3.6.7) as the provider for my JPA project.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

爱的十字路口 2024-12-15 08:39:46

参考文档说:

where 子句中使用的表达式包括以下内容:
[...]

  • SQL 文字 'foo', 69, 6.66E+2, '1970-01-01 10:00:01.0'

The reference documentation says:

Expressions used in the where clause include the following:
[...]

  • SQL literals 'foo', 69, 6.66E+2, '1970-01-01 10:00:01.0'
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文