Does Eclipselink support queries containing regular expression?

萝らか妹 提交于 2019-12-02 06:32:36

问题


I've seen that DBMS like MySQL supports query containing regular expressions. Does Eclipselink support this?

I have to retrieve entities having some String attribute matching some regular expression as

SELECT X FROM Person X WHERE X.name <some keyword> (A-Z)*

回答1:


MySQL uses REGEX or RLIKE for regular expression queries. JPQL does not support these operators, so you can use a native SQL query.

In EclipseLink you could define your own ExpressionOperator for these, and use it in an Expression query, but not currently with JPQL. JPQL does support calling database functions using FUNC, but these have different syntax than functions. You could extend the MySQLPlatform to make #like us REGEX or RLIKE.

Please log a bug for this on EclipseLink. Most databases now support regex, so this support should be available in JPQL.



来源:https://stackoverflow.com/questions/8985205/does-eclipselink-support-queries-containing-regular-expression

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!