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"
 or die "Can't initialize database: $!\n";

untie %database;

exit;

Thanks, as you can tell I am a wealth of experience <cough, sputter>. I have to start 
somewhere.

Ed

Reply via email to