Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Usenet -> c.d.o.server -> Re: pl/sql problem
Hi there-
I don't know if this helps, but when I want to pass a variable into a cursor, I do the following:
cursor temp_cur (p_temp in varchar2) is select * from temp_table where thing=p_temp;
Then, when I open the cursor, I do the following:
open temp_cur('temp value');
...jeff Received on Wed Aug 26 1998 - 00:00:00 CDT
![]() |
![]() |