in reply to Re: Retrieving number of updated rows in a database
in thread Retrieving number of updated rows in a database

It also works with bind parameters:
$numberofrows = $dbh->do("update...",undef,@bind_params);
(where undef is a placeholder for any additional attributes, e.g. AutoCommit, RaiseError)

rdfield