Thanks to visit codestin.com Credit goes to perldoc.perl.org
NDBM_File - Tied access to ndbm files
use NDBM_File; use Fcntl; # for O_ constants tie(%h, 'NDBM_File', 'Op.dbmx', O_RDWR|O_CREAT, 0640); untie %h;
See "tie" in perlfunc, perldbmfilter