1 .\" Copyright (c) 1999 Tim Singletary
2 .\" No copyright is claimed.
4 .\" THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
5 .\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
6 .\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
7 .\" ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
8 .\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
9 .\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
10 .\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
11 .\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
12 .\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
13 .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
16 .\" $FreeBSD: src/lib/libc/db/man/dbm.3,v 1.5 2001/10/01 16:08:50 ru Exp $
18 .\" Note: The date here should be updated whenever a non-trivial
19 .\" change is made to the manual page.
34 .Nd database access functions
39 .Fn dbm_open "const char *base" "int flags" "int mode"
41 .Fn dbm_close "DBM *db"
43 .Fn dbm_store "DBM *db" "datum key" "datum data" "int flags"
45 .Fn dbm_fetch "DBM *db" "datum key"
47 .Fn dbm_delete "DBM *db" "datum key"
49 .Fn dbm_firstkey "DBM *db"
51 .Fn dbm_nextkey "DBM *db"
53 .Fn dbm_error "DBM *db"
55 .Fn dbm_clearerr "DBM *db"
57 .Fn dbm_dirfno "DBM *db"
59 Database access functions.
60 These functions are implemented using
76 .Fn dbm_open base flags mode
77 opens or creates a database.
79 is the basename of the file containing
80 the database; the actual database has a
86 .Qq Li /home/me/mystuff
87 then the actual database is in the file
88 .Pa /home/me/mystuff.db .
94 .Pq Dv O_RDWR | O_CREAT
95 is a typical value for
98 is a typical value for
103 The pointer returned by
105 identifies the database and is the
107 argument to the other functions.
113 if there were any errors.
118 normally returns zero.
120 .Fn dbm_store db key data flags
121 inserts or replaces an entry in the database.
131 and the database already contains an entry for
133 that entry is not replaced.
134 Otherwise the entry is replaced or inserted.
136 normally returns zero but returns 1 if the entry could not be
143 already exists) or returns -1 and sets
145 if there were any errors.
155 .Fn dbm_delete db key
156 deletes the entry for
159 normally returns zero but returns 1 if there was no entry with
161 in the database or returns -1 and sets
163 if there were any errors.
166 returns the first key in the database.
168 returns subsequent keys.
170 must be called before
172 The order in which keys are returned is unspecified and may appear
177 after all keys have been returned.
182 value of the most recent error.
184 resets this value to 0 and returns 0.
187 returns the file descriptor to the database.
193 These functions (except