in reply to DBIx::Class warning at startup
Examine the source code for DBIx::Class::Storage::DBI and see if you can spot the line in question.$ 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.
You will only see such warnings when use warnings are specified. Do that. Always.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: DBIx::Class warning at startup
by dreel (Sexton) on Aug 27, 2007 at 05:26 UTC |