J jroberts Member Jan 14, 2005 #1 Hi, is it possible to display the number of rows affected by an update through the test window? E.g. in the status line
Hi, is it possible to display the number of rows affected by an update through the test window? E.g. in the status line
Marco Kalter Administrator Staff member Jan 14, 2005 #1 This is currently not possible, but I have added it to the list of enhancement requests.
Marco Kalter Administrator Staff member Jan 14, 2005 #1 The following will already do the trick: Code: begin update yourtable set ... where ...; :rows_affected := sql%rowcount; end; You can declare :rows_affected as a number or string variable.
The following will already do the trick: Code: begin update yourtable set ... where ...; :rows_affected := sql%rowcount; end; You can declare :rows_affected as a number or string variable.