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 -> Re: Dynamically spescifying a select clause for a cursor

Re: Dynamically spescifying a select clause for a cursor

From: John Thwaites <John.Thwaites_at_alliedsignal.com>
Date: 1998/03/30
Message-ID: <351FADF1.1657BB8F@alliedsignal.com>#1/1

Try the DBMS_SQL builtin packge. This lets you run dynamic SQL from within a PL/SQL procedure.

John Thwaites
AlliedSignal Inc. - Polymers

fkgrass_at_hotmail.com wrote:

> 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 30 1998 - 00:00:00 CST

Original text of this message

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