On Mon, Dec 1, 2008 at 7:58 AM, Larry W. Virden <[EMAIL PROTECTED]> wrote:
> Now, when the PERSON_ID matches, the update occurs.  When the
> PERSON_ID is not found, however, an error isn't raised.

updating zero rows is not an error.

you can detect it yourself with:
my $rows = $sth->execute();

Then rows will be == 0 if zero rows were updated, and you can die
yourself if you want to call that an error.

Reply via email to