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

Home -> Community -> Usenet -> c.d.o.misc -> Dynamically spescifying a select clause for a cursor

Dynamically spescifying a select clause for a cursor

From: <fkgrass_at_hotmail.com>
Date: 1998/03/23
Message-ID: <6f6n1n$i7$1@nnrp1.dejanews.com>#1/1

How do I dynamically specify the select for a cursor. Here is what I want to do. This is just an example of what i want to do. declare
c_cursor cusor;
l_sql long:= 'select * from dual';
begin
  open c_cursor for l_sql;
  for em in c_cursor loop
   ....
  end loop;
end;

Any ideas?

Thanks,
Fred Grass

-----== Posted via Deja News, The Leader in Internet Discussion ==----- http://www.dejanews.com/ Now offering spam-free web-based newsreading Received on Mon Mar 23 1998 - 00:00:00 CST

Original text of this message

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