Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
Home -> Community -> Mailing Lists -> Oracle-L -> RE: what pl/sql construct can return multiple rows?
Could not find any specific examples of this usage . . .
thanks much
bill
-----Original Message-----
Sent: Tue, March 19, 2002 12:19 PM
To: Multiple recipients of list ORACLE-L
Lots of examples avlbl from Concepts manual; also pl check asktom.com
Step 1) Declare a ref cursor inside a package
CREATE PACKAGE APACK AS
TYPE RefCurTyp IS REF CURSOR;
END APACK;
Step 2) Employ the ref curosr IN OUT variable inside the procedure..note
that the cursor is opened but not fetched..
PROCEDURE demo_ref (
refcurvar IN OUT RefCurTyp, choice NUMBER) IS BEGIN IF choice = 1 THEN OPEN refcurvar FOR SELECT * FROM emp; ELSIF choice = 2 THEN OPEN refcurvar FOR SELECT * FROM dept; ELSIF choice = 3 THEN OPEN refcurvar FOR SELECT * FROM sal; END IF;
--
Please see the official ORACLE-L FAQ: http://www.orafaq.com
--
Author: Magaliff, Bill
INET: Bill.Magaliff_at_lendware.com
Fat City Network Services -- (858) 538-5051 FAX: (858) 538-5051 San Diego, California -- Public Internet access / Mailing Lists --------------------------------------------------------------------To REMOVE yourself from this mailing list, send an E-Mail message to: ListGuru_at_fatcity.com (note EXACT spelling of 'ListGuru') and in the message BODY, include a line containing: UNSUB ORACLE-L (or the name of mailing list you want to be removed from). You may also send the HELP command for other information (like subscribing). Received on Wed Mar 20 2002 - 07:48:21 CST