|
|
| P is for Practical | |
| PerlMonks |
perlman:lib:GDBM_Fileby root (Scribe) |
| on Dec 23, 1999 at 00:49 UTC ( #1115=perlfunc: print w/ replies, xml ) | Need Help?? |
lib:GDBM_FileSee the current Perl documentation for lib:GDBM_File. Here is our local, out-dated (pre-5.6) version: ![]() GDBM_File - Perl5 access to the gdbm library.
![]()
use GDBM_File ;
tie %hash, 'GDBM_File', $filename, &GDBM_WRCREAT, 0640;
# Use the %hash array.
untie %hash ;
![]() GDBM_File is a module which allows Perl programs to make use of the facilities provided by the GNU gdbm library. If you intend to use this module you should really have a copy of the gdbm manualpage at hand. Most of the libgdbm.a functions are available through the GDBM_File interface.
AVAILABILITY
Gdbm is available from any
GNU archive. The master site is
BUGSThe available functions and the gdbm/perl interface need to be documented.
SEE ALSOperl(1), DB_File(3). |
|