Hi,On 2 January 2012 03:26, Raymond O'Donnell <rod@xxxxxx> wrote:And also - does PERFORM works with FOUND?Not sure what you mean - can you elaborate?No, perform (and execute) doesn't populate 'found' variable:http://www.postgresql.org/docs/9.0/static/plpgsql-statements.html#PLPGSQL-STATEMENTS-DIAGNOSTICSYou have to use something like this:get diagnostics rr = row_count;-- Ondrej Ivanic(ondrej.ivanic@xxxxxxxxx)
And also - does PERFORM works with FOUND?
Not sure what you mean - can you elaborate?
A PERFORM statement sets FOUND true if it produces (and discards) one or more rows, false if no row is produced.