On Thu, Jul 31, 2003 at 06:22:34PM -0400, Ed Patterson wrote:
> I receive the above error when attempting to execute the code below. I have
> installed DB_File and out of desperation Tie-DB_File-SplitHash.
>
> Am I missing a module or is my typing really that bad?
>
> >From page 33 of _the_ book
>
> #!c:/perl/bin/perl -w
> # createdb.pl - Creates a Berkeley DB
>
> use strict;
> use DB_File;
>
> my %database;
> tie %database, 'DB_FILE', "createdb.dat"
^^^
Change to lower case (DB_File)
> or die "Can't initialize database: $!\n";
>
> untie %database;
>
> exit;