Oracle FAQ Your Portal to the Oracle Knowledge Grid
HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US
 

Home -> Community -> Usenet -> c.d.o.server -> Re: Using Value of OUT Parameter

Re: Using Value of OUT Parameter

From: Ganesh Raja <ganesh_at_gtfs-gulf.com>
Date: 17 Dec 2001 21:37:26 -0800
Message-ID: <a8aed4.0112172137.7085de9f@posting.google.com>


dtburke_at_software.rockwell.com (David Burke) wrote in message news:<87685036.0112171104.1a21207e_at_posting.google.com>...
> I am Executing a Stored Proc. (with an OUT value) within a Stored
> Proc.
> I need to Get the Value of the OUT parameter, from the First Proc.,
> for an INSERT statement in the Other Proc.
> Code Snippet:
>
> BEGIN
> DECLARE lSeqId;
> BEGIN
> lSeqId := 1;
>
> /*This procedure takes an input and returns a new SequenceId*/
> spGetSeqNumber('TableName',lSeqId);

What are u doing in this procedure... Check that Logic.

> INSERT INTO MyTable(lId, sName) VALUES (lSeqId, 'Smith');
>
> END;
>
> END;
>
> Why is lSeqId == NULL when the INSERT is executed?

Regards,
Ganesh R Received on Mon Dec 17 2001 - 23:37:26 CST

Original text of this message

HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US