in reply to Execute Oracle Stored procedure using DBIx::ProcedureCall
It appears that you are attempting to execute the PL/SQL block:
BEGIN ? := abc; END;
That is attempting to call the function abc, not the proceudre abc, hence your error message. Try changing the PL/SQL to:
BEGIN abc; END;
|
|---|