in reply to DBI 1.3.7->1.4.5
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
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: DBI 1.3.7->1.4.5
by Anonymous Monk on Nov 12, 2004 at 16:40 UTC | |
by mpeppler (Vicar) on Nov 12, 2004 at 16:44 UTC |