in reply to Re: Best user installable database for perl
in thread Best user installable database for perl

Some kind of built in DB support sounds lovely, but as far as I can tell, it only supports direct key->value access, in the form of a tied hash? This might be a little tricky to implement, but I suppose it's theoretically doable..
  • Comment on Re: Re: Best user installable database for perl

Replies are listed 'Best First'.
Re: Re: Re: Best user installable database for perl
by perrin (Chancellor) on Oct 10, 2003 at 17:52 UTC
    That's correct, dbm files are on-disk hashes. They are enough for most simple applications. If you need something fancier you can certainly try DBI::PurePerl and DBD::Sprite or DBD::CSV, but they will require CPAN downloads and installs, unlike dbm.