Notice: This Wiki is now read only and edits are no longer possible. Please see: https://gitlab.eclipse.org/eclipsefdn/helpdesk/-/wikis/Wiki-shutdown-plan for the plan.
EclipseLink/Examples/JPA/StoredProcedures
< EclipseLink | Examples | JPA
Contents
EclipseLink has extended support for stored procedure execution including:
- IN, OUT and INOUT parameter support
- CURSOR output parameter support
- Result set support
- Annotation support using @NamedStoredProcedureQuery
- Dynamic definition support using StoreProcedureCall
- Stored function support using StoredFunctionCall
- Object-relational data-types, Struct, Array (OBJECT types, VARRAY), including mapping using ObjectRelationalDataTypeDescriptor
- PLSQL types, BOOLEAN, RECORD, TABLE, using PLSQLStoredProcedureCall
A stored procedure call be used in any query to read objects, or read or modify raw data.
Any CRUD or mapping operation can also be overridden using a stored procedure call using a DescriptorCustomizer and the DescriptorQueryManager API.
See,
Oracle stored procedure using OUT CURSOR
CREATE PROCEDURE EMP_READ_ALL ( RESULT_CURSOR OUT CURSOR_TYPE.ANY_CURSOR) AS BEGIN OPEN RESULT_CURSOR FOR SELECT e.*, s.* FROM EMPLOYEE e, SALARY s WHERE e.EMP_ID = s.EMP_ID; END;
Using JpaEntityManager createQuery() API to execute a stored procedure
import javax.persistence.Query; import org.eclipse.persistence.queries.StoredProcedureCall; import org.eclipse.persistence.queries.ReadAllQuery; ReadAllQuery databaseQuery = new ReadAllQuery(Employee.class); StoredProcedureCall call = new StoredProcedureCall(); call.setProcedureName("EMP_READ_ALL"); call.useNamedCursorOutputAsResultSet("RESULT_CURSOR"); databaseQuery.setCall(call); Query query = ((JpaEntityManager)entityManager.getDelegate()).createQuery(databaseQuery); List<Employee> result = query.getResultList();
Using @NamedStoredProcedureQuery to define a stored procedure
@NamedStoredProcedureQuery(name="findAllEmployees", procedureName="EMP_READ_ALL", resultClass=Employee.class, parameters={ @StoredProcedureParameter(queryParameter="RESULT_CURSOR", name="result", direction=Direction.OUT_CURSOR)}) @Entity public class Employee { ... }
Using named query
Query query = entityManager.createNamedQuery("findAllEmployees"); List<Employee> result = query.getResultList();
PLSQLStoredProcedureCall - Complex data
See a real complex sample at http://ronaldoblanc.blogspot.com.br/2012/05/jpa-eclipselink-and-complex-parameters.html (Blog)