wok view gdbm/description.txt @ rev 25037

Up glza (0.11.4)
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sat May 21 21:38:29 2022 +0000 (23 months ago)
parents
children
line source
1 GNU dbm (or GDBM, for short) is a library of database functions that
2 use extensible hashing and work similar to the standard UNIX dbm.
3 These routines are provided to a programmer needing to create and
4 manipulate a hashed database.
6 The basic use of GDBM is to store key and data pairs in a data file.
7 Each key must be unique and each key is paired with only one data item.
9 The library provides primitives for storing key and data pairs,
10 searching and retrieving the data by its key and deleting a key along
11 with its data.
12 It also support sequential iteration over all key and data pairs in
13 a database.
15 For compatibility with programs using old UNIX dbm function, the package
16 also provides traditional dbm and ndbm interfaces