| From: | sundaresan raman <netsun_r(at)yahoo(dot)com> |
|---|---|
| To: | pgsql-sql(at)postgresql(dot)org |
| Subject: | |
| Date: | 2003-12-22 10:30:43 |
| Message-ID: | 20031222103043.50050.qmail@web41006.mail.yahoo.com |
| Views: | Whole Thread | Raw Message | Download mbox | Resend email |
| Thread: | |
| Lists: | pgsql-sql |
hi,
I am new of postgre sql.im using cursors in pgsql and
getting tuples successfully returns in c++, but how
can i raise exception in the stored function?.pl
anyone help me.
This is my function :
CREATE or REPLACE FUNCTION
sp_test_validatePartnerCode(text)
RETURNS int4 AS
'
DECLARE
t_p_code ALIAS FOR $1;
curPartner CURSOR FOR SELECT partner_code FROM
test_license WHERE partner_code = t_p_code;
BEGIN
OPEN curPartner;
return curPartner;
END;
'LANGUAGE 'plpgsql' ;
advance thanks ,
sundar
__________________________________
Do you Yahoo!?
New Yahoo! Photos - easier uploading and sharing.
http://photos.yahoo.com/
| From | Date | Subject | |
|---|---|---|---|
| Next Message | Richard Huxton | 2003-12-22 10:48:20 | Re: how to preserve \n in select statement |
| Previous Message | Denis | 2003-12-22 09:37:25 | Re: how to preserve \n in select statement |