On Mon, May 16, 2005 at 11:36:29AM -0400, Michael Styer wrote: > On Mon, 16 May 2005 10:58:39 -0400, "Michael Styer" <[EMAIL PROTECTED]> > said: > > On Windows XP Pro using Perl 5.8.6, DBI v1.43 and DBD::Oracle v1.06: > > > > DBD::Oracle::st fetchrow_hashref warning: at dataspider.bat line 89, > > <DATA> line 1. > > Answered my own question; this is the standard output of DBI when > PrintWarn is true. Turning off PrintWarn stopped my script dieing at > this point, which doesn't answer the question of why I was receiving > warnings at this point.
Upgrade DBD::Oracle. The old one would set err to 0 (thus triggering the new DBI warning/success-with-info mechanism) but newer versions leave it undef. Tim.
