![]() |
|
There's more than one way to do things | |
PerlMonks |
perlman:lib:SDBM_Fileby root (Monk) |
on Dec 23, 1999 at 00:49 UTC ( [id://1122]=perlfunc: print w/replies, xml ) | Need Help?? |
lib:SDBM_FileSee the current Perl documentation for lib:SDBM_File. Here is our local, out-dated (pre-5.6) version: ![]() SDBM_File - Tied access to sdbm files
![]()
use SDBM_File;
tie(%h, 'SDBM_File', 'Op.dbmx', O_RDWR|O_CREAT, 0640);
untie %h;
![]() See tie |
|