Is it possible to write & call user-defined function in JPQL?
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
It’s not supported by JPA specification itself, however, some JPA implementations may provide such an extension.
For example, in Hibernate you can subclass a
Dialectand define customs SQL functions by callingregisterFunction(). Many dialect-specific functions are already defined this way.