Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Usenet -> c.d.o.misc -> Re: How to pass procedures as parameters?
earthlink wrote:
>
> can any one tell me how to pass a procedure as a parameter,
> and execute it in the called program.
>
> TIA
>
> Phil
create or replace
procedure my_proc(p_incoming_parm number, p_outgoing_only_parm out number, p_in_and_outgoing in out number) isbegin
called with:
my_proc(12,var1,var2)
HTH
--
![]() |
![]() |