Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Usenet -> c.d.o.server -> Re: plsql webtoolkit newbie question
You can create an overloaded procedure, and the correct one
will be called depending on the parameters being passed:
For example:
PROCEDURE abc(p1 IN varchar2, p2 IN varchar2)
is
begin
//some code
end abc;
PROCEDURE abc
is
begin
//some code
end abc;
Ensure that each procedure is declared in your package
header. Hope it helps
Elaine :-)
![]() |
![]() |