1GDBM_File(3pm) Perl Programmers Reference Guide GDBM_File(3pm)
2
3
4
6 GDBM_File - Perl5 access to the gdbm library.
7
9 use GDBM_File ;
10 tie %hash, 'GDBM_File', $filename, &GDBM_WRCREAT, 0640;
11 # Use the %hash array.
12 untie %hash ;
13
15 GDBM_File is a module which allows Perl programs to make use of the
16 facilities provided by the GNU gdbm library. If you intend to use this
17 module you should really have a copy of the gdbm manualpage at hand.
18
19 Most of the libgdbm.a functions are available through the GDBM_File
20 interface.
21
23 gdbm is available from any GNU archive. The master site is
24 "ftp.gnu.org", but you are strongly urged to use one of the many
25 mirrors. You can obtain a list of mirror sites from
26 http://www.gnu.org/order/ftp.html.
27
29 The available functions and the gdbm/perl interface need to be
30 documented.
31
32 The GDBM error number and error message interface needs to be added.
33
35 perl(1), DB_File(3), perldbmfilter.
36
37
38
39perl v5.16.3 2013-03-04 GDBM_File(3pm)