You could add a $SIG{__WARN__} handler to print out a perl stack trace when the warnings occur to see if that gives you more information - something like:
You can also enable DBI tracing (DBI->trace(3)) to see what calls are being made around the location of the warnings.use Carp qw(cluck); $SIG{__WARN__} = sub { cluck(@_); } ... rest of code...
Michael
In reply to Re: DBI 1.3.7->1.4.5
by mpeppler
in thread DBI 1.3.7->1.4.5
by Anonymous Monk
| For: | Use: | ||
| & | & | ||
| < | < | ||
| > | > | ||
| [ | [ | ||
| ] | ] |