JPA 1.0 中缺少 NVL() 的解决方法
JPA 1.0 (Eclipselink 1.1.x) 中缺少的 NVL() 函数是否有解决方法?
谢谢你并致以最诚挚的问候
is there a workaround for the missing NVL() function in JPA 1.0 (Eclipselink 1.1.x)?
Thank you and best regards
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
据我所知,没有标准的解决方法。在 EclipseLink 2.1 中,仅通过 JPQL 支持
nvl()
。但对于 EclipseLink 1.1,您似乎必须使用 EclipseLink 表达式,特别是Expression.ifNull()
。请参阅此线程和Bug 219814 了解详细信息。To my knowledge, there is no standard workaround. With EclipseLink 2.1
nvl()
will just be supported through JPQL. But with EclipseLink 1.1, it seems you'll have to use EclipseLink Expressions, in particularExpression.ifNull()
. See this thread and Bug 219814 for the details.