Skip to main content

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.

Jump to: navigation, search

Difference between revisions of "EclipseLink/Examples/JPA/nonJDBCArgsToStoredProcedures"

(How to handle nonJDBC arguments for Oracle Stored Procedures)
(How to handle nonJDBC arguments for Oracle Stored Procedures)
Line 7: Line 7:
  
 
For a target procedure:
 
For a target procedure:
  <pre style='color:#000000;background:#ffffff;'><span style='color:#575757; font-weight:bold; '>procedure</span> bool_test<span style='color:#555555; '>(</span>x <span style='color:#575757; font-weight:bold; '>IN</span> <span style='color:#575757; font-weight:bold; '>BOOLEAN</span><span style='color:#555555; '>)</span>
+
  <font color="#000000">'''<font color="#575757">procedure</font>''' bool_test<font color="#555555">(</font>x '''<font color="#575757">IN</font>''' '''<font color="#575757">BOOLEAN</font>'''<font color="#555555">)</font>
</pre>
+
</font>
 
+
 
x
 
x

Revision as of 12:30, 23 November 2007

{available as of EclipseLink 1.0M2}

How to handle nonJDBC arguments for Oracle Stored Procedures

The standard way of handling a Stored Procedure is to build an instance of oracle.toplink.queryframework.StoredProcedureCall. However, the arguments must be compatible with the JDBC specification.

To handle nonJDBC arguments (e.g. BOOLEAN, PLS_INTEGER, PL/SQL record, etc.) a new sub-class has been created: oracle.toplink.platform.database.oracle.PLSQLStoredProcedureCall:

For a target procedure:

procedure bool_test(x IN BOOLEAN)

x

Back to the top