A arjomil Member Mar 26, 2014 #1 Hi. Is there a way for a plug-in to execute procedure or function store in a package calling SQL_* functions? Thanks.
Hi. Is there a way for a plug-in to execute procedure or function store in a package calling SQL_* functions? Thanks.
Marco Kalter Administrator Staff member Mar 27, 2014 #1 Yes, you can execute a PL/SQL Block with the call: Code: begin mypackage.myprocedure(param1 => 10); end;
Yes, you can execute a PL/SQL Block with the call: Code: begin mypackage.myprocedure(param1 => 10); end;