NAME

Tie::MLDBM::Store::DBI - Tie::MLDBM Storage Component Module

SYNOPSIS

 use Tie::MLDBM;

 tie %hash, 'Tie::MLDBM', {
     'Store'     =>  'DBI'
 } ... or die $!;

DESCRIPTION

This module forms a storage component of the Tie::MLDBM framework, using the Tie::DBI module to fulfill storage requirements.

Due to the structure of the Tie::MLDBM framework, there are few limits on the underlying storage component with all storage components simply existing as an inherited class of the storage module that they represent. For example, this module, Tie::MLDBM::Store::DBI inherits from Tie::DBI in a simple IS-A relationship.

Caveats of usage of this module for storage are the same as that for the Tie::DBI module itself and are documented on Tie::DBI.

AUTHOR

Rob Casey <robau@cpan.org>

COPYRIGHT

Copyright 2002 Rob Casey, robau@cpan.org

SEE ALSO

Tie::MLDBM, Tie::DBI