Hi,
I have many many perl programs that do the following:
use DBI;
use DBD::Oracle;
If I also put:
use strict;
and type:
perl -cw filename.pl
I get:
Variable "$sth" is not imported at filename.pl line XXX
Global symbol "sth" requires explicit package name at filename.pl line
261
Is there a good way to get around this? I would like to "use strict"
but I'd like to get rid of those errors.
Thanks,
Jamie
