- or download this
$dbh->{PrintError} = 0;
- or download this
If you turn "RaiseError" on then you'd normally turn "PrintError" off.
- or download this
my $entries =
eval {
...
eval {$dbh->rollback ()} or $err .= "\n Rollback processing
+failed!";
die $err;
};
- or download this
my $entries;
eval {
...
} or do {
... rollback and die ...
};