NAME
SYNOPSIS
DESCRIPTIONTie
EXPORTS
DIAGNOSTICSsdbm store returned -1, errno 22, key "..." at ...
BUGS AND WARNINGS
NAME
SDBM_File - Tied access to sdbm files
SYNOPSIS
use Fcntl; # For O_RDWR, O_CREAT, etc.
use SDBM_File;
tie(%h, 'SDBM_File', 'filename', O_RDWR|O_CREAT, 0666)
or die "Couldn't tie SDBM file 'filename': $!; aborting";
# Now read and change the hash
$h{newkey} = newvalue;
print $h{oldkey};
...
untie %h;
DESCRIPTION
SDBM_File establishes a connection between a Perl ha