I'm trying to tie a hash to a dbm database and it simply isn't working on my Windows 98 machine. I'm getting an error with the following message:
Goto undefined subroutine &AutoLoader::AUTOLOAD at C:/Perl/lib/Fcntl.pm line 208.
I don't reference any packages or modules in my script so I'm not really sure why Fcntl.pm is even being called... does using tie call that package? and is there something wrong with that package in windows?
<added>Oops I do use the DB_File module. Here's a bit of code:
use DB_File;
my %IPlist;
tie %IPlist, 'DB_File', "IPlist"
or die "Cannot open $filename: $!\n" ;
</added>
Try using Any_DBM, it will work with what ever is available.