problem for o/p

From: rajinder ruprai <raj_roses(at)yahoo(dot)co(dot)in>
To: pgsq_hackers(at)postgresql(dot)org
Subject: problem for o/p
Date: 2005-09-10 11:11:52
Message-ID: 20050910111152.42065.qmail@web8405.mail.in.yahoo.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-hackers

sir,
i'am getting different o/p for the same program code as well as the data base is the same .twice the output is being printed on some machines whereas correct o/p on some.the program code is
create or replace function f() return int4 as'
c1 cursor for select empname from emp;
e1 emp.ename%type;
begin
open c1;
loop
fetch c1 into e1;
exit when not found;
raise notice ' 'emp name %' ', e1;
end loop;
close c1;
return 1;
end;
'language 'plpgsql';


---------------------------------
Yahoo! India Matrimony: Find your partner now.

Responses

Browse pgsql-hackers by date

  From Date Subject
Next Message Robert Treat 2005-09-10 12:30:50 Re: initdb profiles
Previous Message Bruce Momjian 2005-09-10 05:28:33 Re: PostgreSQL from source using MinGW