in reply to Sybase Modules
"Can't locate warning.pm in @INC..."
This indicates that you have used the line:
in your script. This is good but your old Perl V 5.004 doesn't know what this means. The warnings pragma was introduced with Perl 5.6.use warnings;
in your script.use strict;
when the correct pragma should beuse warning;
use warnings; # Note the 's'
|
|---|