Обсуждение: cursor problem

Поиск
Список
Период
Сортировка

cursor problem

От
Vidya
Дата:
Hello All,
I am not able to create a cursor in psql.
 
I have a function which opens a cursor .
SampleDB=# create function reffunc(refcursor) returns refcursor as $$
SampleDB$# begin
SampleDB$# open $1 for select col from test;
SampleDB$# return $1;
SampleDB$# end;
SampleDB$# $$ language sql;
ERROR:  syntax error at or near "open" at character 67
LINE 3: open $1 for select col from test;
 
I am not able to create a cursor , it errors out at 'open '
 
 
I tried a still more simple one
        ^
SampleDB=# create or replace function test(refcursor) returns refcursor as $$
SampleDB=#begin
SampleDB$# syscur refcursor;
SampleDB=#end;
SampleDB$# $$ language sql;
ERROR:  syntax error at or near "syscur" at character 68
LINE 2: syscur refcursor;
 
How do I create a cursor .
 
Any help asap ?
Thanks
Vidya


Do you Yahoo!?
Yahoo! Small Business - Try our new resources site!

Re: cursor problem

От
Michael Fuhr
Дата:
On Fri, May 06, 2005 at 06:18:12AM -0700, Vidya wrote:
>
> I am not able to create a cursor in psql.

See my response in pgsql-general (and please don't multipost).

--
Michael Fuhr
http://www.fuhr.org/~mfuhr/