Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Usenet -> c.d.o.misc -> REF CURSOR
Is there an easy way to get a result set in one procedure/function that
calls another procedure/function that returns a reference cursor?
function getUser
(p_UserID in integer)
return types.cursorType is
l_cursor types.cursorType;
begin
open l_cursor for select
DriversLicense,LicenseStateID,Email,CompanyName,HasWebsite,MustChangePas sword,
TermsAccepted,a.LastUpdated from common.users a, common.userdetails b where a.userid = b.userid(+) and a.UserID = p_UserID;
return l_cursor;
end;
How would I loop through the return values of getUser(2)?
--
Database Applications Engineer
Rentals.com
459 Hamilton Ave, Suite 202
Palo Alto, CA 94301
Sent via Deja.com http://www.deja.com/
Before you buy.
Received on Thu Nov 18 1999 - 02:35:45 CST
![]() |
![]() |