Lines Matching refs:DB
2 :mod:`bsddb` --- Interface to Berkeley DB library
6 :synopsis: Interface to Berkeley DB database library
13 The :mod:`bsddb` module provides an interface to the Berkeley DB library. Users
20 The :mod:`bsddb` module requires a Berkeley DB library version from 4.0 thru
27 The website with documentation for the :mod:`bsddb.db` Python Berkeley DB
29 Berkeley DB 4.x itself.
32 The Berkeley DB library.
34 A more modern DB, DBEnv and DBSequence object interface is available in the
35 :mod:`bsddb.db` module which closely matches the Berkeley DB C API documented at
45 access the appropriate type of Berkeley DB file. The first two arguments of
58 function. Consult the Berkeley DB documentation for their use and
70 Consult the Berkeley DB documentation for their use and interpretation.
75 Open a DB record format file named *filename*. Files never intended to be
81 Consult the Berkeley DB documentation for their use and interpretation.
87 with the old Berkeley DB 1.85 database library. The :mod:`bsddb185` module
119 Return the list of keys contained in the DB file. The order of the list is
126 Return ``1`` if the DB file contains the argument as a key.
140 Set the cursor to the first item in the DB file and return it. The order of
147 Set the cursor to the next item in the DB file and return it. The order of
153 Set the cursor to the previous item in the DB file and return it. The order of
160 Set the cursor to the last item in the DB file and return it. The order of keys