The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

Tie::DBI_DBM - a tie interface to DBI databases

SYNOPSIS

    tie %db, 'Tie::DBI_DBM', "dbi:mysql:test",
                              table=>"dbm",key=>"pkey",val=>"pval",
                              user=>"user",password=>"password"
        or die $!;
    $db{12345} = "val for 12345";
    print $db{12345}; # yields: val for 12345

DESCRIPTION

The interface is as far as possible compatible with that of Tie::RDBM.

AUTHOR

Slaven Rezic - slaven@rezic.de

SEE ALSO

DBI, Tie::RDBM, AnyDBM_File.