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

NAME

NDBM_File - Tied access to ndbm files

SYNOPSIS

 use NDBM_File;
 use Fcntl;       # for O_ constants

 tie(%h, 'NDBM_File', 'Op.dbmx', O_RDWR|O_CREAT, 0640);

 untie %h;

DESCRIPTION

See "tie" in perlfunc