How to Return number of rows updated in stored procedure - Mailing list pgsql-sql

From Shane McEneaney
Subject How to Return number of rows updated in stored procedure
Date
Msg-id 019801c03e9d$2a810520$49dc7ac0@gamesnow.ie
Whole thread Raw
List pgsql-sql
Hi,    can anybody tell me how to capture the number of rows updated in
an update query inside a stored procedure? This doesn't work but
hopefully you will see what I mean.

CREATE FUNCTION "test" () RETURNS int AS '
DECLARE       v_number_of_rows int;

BEGIN       select into v_number_of_rows         update carbon_user         set email_confirmed = ''Y''         where
email_confirmed= ''Y'';       RETURN v_myvar;
 
END;
' LANGUAGE 'plpgsql';

Thanks in advance!!!



pgsql-sql by date:

Previous
From: indraneel@www.cdfd.org.in
Date:
Subject: Re: Alternate Database Locations
Next
From: Jie Liang
Date:
Subject: Re: Problem whith Stored queries