in reply to DBIx::Class warning at startup

It is perl telling you that the program used a uninitialized value in a comparison:
$ perl use strict; use warnings; my $i; # uninitialized my $j=5; if ($i == $j) { print "equal"; } __END__ Use of uninitialized value in numeric eq (==) at - line 7.
Examine the source code for DBIx::Class::Storage::DBI and see if you can spot the line in question.

You will only see such warnings when use warnings are specified. Do that. Always.

--
Andreas

Replies are listed 'Best First'.
Re^2: DBIx::Class warning at startup
by dreel (Sexton) on Aug 27, 2007 at 05:26 UTC
    I always use perl -w option as i know it's sane as use warnings