I need to call Oracle Lite procedure, which has output parameters from DOA
component, and receive these parameters as results.
I have tried two variants:
a)Select MyProcedure(:a,:b) from dual;
b)Begin
MyProcedure(:a,:b);
End;
where a, b - output parameters.
In first case procedure didn't return...