Re: HELP!!! Please I need FORMS 4.0 HELP!!!

From: Enter your username here <userid_at_nz.oracle.com>
Date: 1995/07/14
Message-ID: <3u5da0$1k4_at_inet-nntp-gw-1.us.oracle.com>#1/1


Example in the PL/SQL User's Guide and Reference

declare cursor C1 is

    select ename, deptno from emp
    where sal > 2000;
    theName varchar2(100);
    theDept number(24);
begin

   open c1;
   fetch c1 into theName, theDept; /* First record */    fetch c1 into theName, theDept; /* Second record */    close c1;
end; Received on Fri Jul 14 1995 - 00:00:00 CEST

Original text of this message