I have an Oracle function which return sys-refcursor and when I call this function using Hibernate, I am getting the following exception.
Hibernate: { ? = call my_function(?) }
org.hibernate.exception.GenericJDBCException: could not execute query
javax.persistence.PersistenceException: org.hibernate.exception.GenericJDBCException: could not execute query
at org.hibernate.ejb.AbstractEntityManagerImpl.convert(AbstractEntityManagerImpl.java:1360)
at org.hibernate.ejb.AbstractEntityManagerImpl.convert(AbstractEntityManagerImpl.java:1288)
at org.hibernate.ejb.QueryImpl.getSingleResult(QueryImpl.java:313)
How can I resolve this?
Oracle function
create or replace
FUNCTION my_function(p_val IN varchar2)
RETURN SYS_REFCURSOR
AS
my_cursor SYS_REFCURSOR;
BEGIN
OPEN my_cursor FOR SELECT emp_name FROM employees
WHERE lower(emp_name) like lower(p_val||'%');
RETURN my_cursor;
END;
My Entity class
@Entity
@javax.persistence.NamedNativeQuery(name = "getFunc", query =
"{ ? = call my_function(:empName) }",
resultClass = Employee.class, hints =
{ @javax.persistence.QueryHint(name = "org.hibernate.callable", value = "true") })
@Table(name = "EMPLOYEES")
and in DAO
@Override
public void findEmployees(QueryData data,
String empName) {
List query = (List) entityManager.createNamedQuery("getFunc")
.setParameter("empName", empName)
.getSingleResult();
data.setResult(query);
}
You seem to be confusing Oracle functions with Oracle stored procedures.
Functions can be invoked from a select statement - user defined functions like yours act the same way as the built-in functions, like min() and max(). They cannot be invoked by an external "call" like stored procedures can.
See http://docs.oracle.com/cd/B19306_01/server.102/b14200/functions231.htm#i1012049 for the definition of a function.
You probably will need to re-write your function as a stored procedure.
For your function,
create or replace
FUNCTION my_function(p_val IN varchar2)
RETURN SYS_REFCURSOR
AS
my_cursor SYS_REFCURSOR;
BEGIN
OPEN my_cursor FOR SELECT emp_name FROM employees
WHERE lower(emp_name) like lower(p_val||'%');
RETURN my_cursor;
END;
You can define the following NamedNativeQuery
:
@NamedNativeQuery(
name = "my_function",
query = "{ ? = call my_function( ? ) }",
callable = true,
resultClass = String.class
)
And, you can call the query like this:
List<String> employeeNames = entityManager
.createNamedQuery("my_function")
.setParameter(1, 1L)
.getResultList();
For a stored procedure:
CREATE OR REPLACE
PROCEDURE my_procedure(p_val IN VARCHAR2,
my_cursor OUT SYS_REFCURSOR,
)
AS
BEGIN
OPEN my_cursor FOR
SELECT emp_name FROM employees
WHERE lower(emp_name) like lower(p_val||'%');
END;
, you can use the following JPA 2.1 query:
StoredProcedureQuery query = entityManager
.createStoredProcedureQuery("my_procedure")
.registerStoredProcedureParameter(1, String.class,
ParameterMode.IN)
.registerStoredProcedureParameter(2, Class.class,
ParameterMode.REF_CURSOR)
.setParameter(1, 1L);
query.execute();
List<Object[]> result = query.getResultList();
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With