Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Usenet -> c.d.o.tools -> Re: Assign Procedure OUT parameter to a variable?
Hallo April!
Just a guess:
procedure proc1(pi_VarIn In Varchar2, po_VarOut Out Number)
as
begin
...
...
procedure proc2(...)
as
p_VarOutProc1 Varchar2(1000);
...
begin
...
HTH,
Stefan.
<april.mcclellan_at_HydroOne.com> schrieb in im Newsbeitrag:
2F96BE4C7CC6D211A55F0008C7A43976017424EC_at_OHSC-EX4...
> Is it possible to assign the OUT parameter of a procedure to a variable?
> I have tried the following:
>
> v_BidNo := SPINSERTBIDNO;
>
> This generates the error PLS-00306 : Wrong number ot types of arguments in
> call to SPINSERTBIDNO.
>
> How can I get the value returned from a procedure when calling that
> procedure from another procedure?
>
> Thanks very much,
>
> April McClellan
>
>
> --
> Posted from thor.hydroone.com [192.75.116.12]
> via Mailgate.ORG Server - http://www.Mailgate.ORG
Received on Tue Apr 03 2001 - 15:33:03 CDT
![]() |
![]() |