|
|
|
Clear questions and runnable code get the best and fastest answer |
|
| PerlMonks |
Comment on |
| ( #3333=superdoc: print w/ replies, xml ) | Need Help?? |
|
Only use $DBI::err (and errstr) when connecting to a database.
Use $dbh->err (and $dbh->errstr) for actions performed using this $dbh. When working with statement handles (like prepared queries), use $sth->err. Always try to use the err-function in the smallest scope possible, because the rest can be altered by other parts running in your code (in other threads or wherever). In reply to Re: DBI fails to return an error code
by Neighbour
|
|