Community
Participate
Working Groups
Arguments to Stored Procedures can have defaults: Sybase: create procedure newPart @desc varchar(40), @price money, @quant int = 0, @reorder int = 10 as ... Oracle: CREATE OR REPLACE PROCEDURE SP_TEST(parm1 VARCHAR2, parm2 VARCHAR2 := 'foo') IS When invoking the SP, you may skip any argument that has a default. This is especially important for SP's from Oracle Apps - some SP's have literally HUNDREDs of arguments but common usage requires only a few.
Updating priority due to revised bug categorization process. See the following page for details: http://wiki.eclipse.org/EclipseLink/Development/Bugs/Guidelines#Priority_and_Target_Milestone If you feel the updated priority is incorrect, please send an email to eclipselink-users@eclipse.org.
Confirmed that this is already supported, for both stored procedures and plsql stored procedures. You just define the desired arguments to the stored procedure call.
The Eclipselink project has moved to Github: https://github.com/eclipse-ee4j/eclipselink