What's wrong with this function - Mailing list pgsql-sql

From Najm Hashmi
Subject What's wrong with this function
Date
Msg-id 3A858290.270E2473@mondo-live.com
Whole thread Raw
Responses Re: What's wrong with this function
Re: What's wrong with this function
List pgsql-sql
Hi all,Here  is a plpgsql function:
flipr'#create function test_cur() returns text as'
flipr'# declare
flipr'#  mycur  cursor for select title from songs where song_id=10;
flipr'#  usr        record;
flipr'#  results    text;
flipr'# begin
flipr'#  open mycur;
flipr'#  fetch next from mycur into usr;
flipr'#  close mycur;
flipr'#  results:= usr.title;
flipr'#
flipr'# end;
flipr'# ' language 'plpgsql';
CREATE
flipr=# select test_cur() as Title;
NOTICE:  plpgsql: ERROR during compile of test_cur near line 2
ERROR:  parse error at or near "cursor"

What I am doing wrong?
Thanks in advance for your help.
Regards, Najm




pgsql-sql by date:

Previous
From: Najm Hashmi
Date:
Subject: pgsql and cursor
Next
From: Jie Liang
Date:
Subject: Re: pgsql and cursor