in reply to Re: Re: Perl DBM
in thread Perl DBM

Thanks for the reply,

I'm using things as follows:
use SDBM_File; use MLDBM qw ( SDBM_File );
Again, I'm a total newbie to DBM issues, so if there are better ways to to this I'd be grateful for some pointers.
Thanks!!
MatthewFrancis

Replies are listed 'Best First'.
Re: Re: Re: Re: Perl DBM
by eserte (Deacon) on Apr 13, 2004 at 16:32 UTC
    Change this to
    use MLDBM qw(DB_File Storable);
    DB_File is far superior over SDBM_File, and Storable is faster than the default Data::Dumper.