Hi I'm trying to use MLDBM, and I got some problems (I use the exemple in the "Perl Cookbook" page 391) : Here is my package "questions" : ############### package questions; sub new { my $class = shift; my $self = {}; bless($self, $class); $self->{CREATION} = time(); return $self; } return 1; ############### here is the code : ############### use MLDBM qw(DB_File); use questions; $objet1 = questions->new(); tie(%hash, 'MLDBM', 'testfile.db', O_CREAT|O_RDWR, 0666) or die "can't open tie to testfile.db: $!"; $hash{"obj1"} = $objet1; untie %hash; ############### So, I got these error message : # Can't locate object method "Dump" via package "Data::Dumper". File 'HD:Applications:Programmation:MacPerl ƒ:lib:MLDBM:Serializer:Data:Dumper.pm'; info on "Dumper.pm" : 4k (may 10 1998) I've looked the code and there is no "Dump" method in this file in package MLDBM : Use Data::Dumper '2.08'; so I tried another version found in CPAN : Data-Dumper-2.101 info on "Dumper.pm" : 32k (may 01 1999) There is a "Dump" method in this file, but I got this new message : # MLDBM error: Please make sure MLDBM/Serializer/Data/Dumper.pm is a properly installed package. Perl says: "# Can't find loadable object for module Data::Dumper in @INC (HD:Applications:Programmation:MacPerl ƒ:lib:MacPPC HD:Applications:Programmation:MacPerl ƒ:lib HD:Applications:Programmation:MacPerl ƒ:lib:MLDBM HD:Applications:Programmation:MacPerl ƒ:lib:MLDBM:Serializer HD:Applications:Programmation:MacPerl ƒ:lib:MacPPC HD:Applications:Programmation:MacPerl ƒ:lib Dev:Pseudo) __________________________________________________ Do You Yahoo!? Bid and sell for free at http://auctions.yahoo.com # ===== Want to unsubscribe from this list? # ===== Send mail with body "unsubscribe" to macperl-request@macperl.org