blob: f625dabc8f384202ae7d382c4a4593ef8f728692 [file] [log] [blame]
Fred Drake9d158811999-04-19 21:19:21 +00001\section{\module{bsddb} ---
2 Interface to Berkeley DB library}
3
4\declaremodule{extension}{bsddb}
5 \platform{Unix, Windows}
6\modulesynopsis{Interface to Berkeley DB database library}
7\sectionauthor{Skip Montanaro}{skip@mojam.com}
8
9
Fred Drake38e5d272000-04-03 20:13:55 +000010The \module{bsddb} module provides an interface to the Berkeley DB
11library. Users can create hash, btree or record based library files
12using the appropriate open call. Bsddb objects behave generally like
13dictionaries. Keys and values must be strings, however, so to use
14other objects as keys or to store other kinds of objects the user must
15serialize them somehow, typically using marshal.dumps or pickle.dumps.
Fred Drake9d158811999-04-19 21:19:21 +000016
Gregory P. Smith57725132003-05-28 07:56:45 +000017Starting with Python 2.3 the \module{bsddb} module requires the
Gregory P. Smithb845ef02003-11-13 08:30:03 +000018Berkeley DB library version 3.2 or later (it is known to work with 3.2
19thru 4.2 at the time of this writing).
Gregory P. Smith57725132003-05-28 07:56:45 +000020
Gregory P. Smith57725132003-05-28 07:56:45 +000021\begin{seealso}
22 \seeurl{http://pybsddb.sourceforge.net/}{Website with documentation
23 for the new python Berkeley DB interface that closely mirrors the
24 sleepycat object oriented interface provided in Berkeley DB 3 and 4.}
25 \seeurl{http://www.sleepycat.com/}{Sleepycat Software produces the
Gregory P. Smithdad58602003-05-28 16:20:03 +000026 modern Berkeley DB library.}
Gregory P. Smith57725132003-05-28 07:56:45 +000027\end{seealso}
28
29The following is a description of the legacy \module{bsddb} interface
30compatible with the old python bsddb module. For details about the more
31modern Db and DbEnv object oriented interface see the above mentioned
32pybsddb URL.
Fred Drake9d158811999-04-19 21:19:21 +000033
34The \module{bsddb} module defines the following functions that create
Fred Drake38e5d272000-04-03 20:13:55 +000035objects that access the appropriate type of Berkeley DB file. The
36first two arguments of each function are the same. For ease of
37portability, only the first two arguments should be used in most
38instances.
Fred Drake9d158811999-04-19 21:19:21 +000039
40\begin{funcdesc}{hashopen}{filename\optional{, flag\optional{,
Fred Drake38e5d272000-04-03 20:13:55 +000041 mode\optional{, bsize\optional{,
42 ffactor\optional{, nelem\optional{,
43 cachesize\optional{, hash\optional{,
44 lorder}}}}}}}}}
Anthony Baxter83888952002-04-23 02:11:05 +000045Open the hash format file named \var{filename}. Files never intended
46to be preserved on disk may be created by passing \code{None} as the
47\var{filename}. The optional
Fred Drake38e5d272000-04-03 20:13:55 +000048\var{flag} identifies the mode used to open the file. It may be
Gregory P. Smith57725132003-05-28 07:56:45 +000049\character{r} (read only, default), \character{w} (read-write) ,
Fred Drake38e5d272000-04-03 20:13:55 +000050\character{c} (read-write - create if necessary) or
51\character{n} (read-write - truncate to zero length). The other
52arguments are rarely used and are just passed to the low-level
53\cfunction{dbopen()} function. Consult the Berkeley DB documentation
54for their use and interpretation.
Fred Drake9d158811999-04-19 21:19:21 +000055\end{funcdesc}
56
Fred Drake9d158811999-04-19 21:19:21 +000057\begin{funcdesc}{btopen}{filename\optional{, flag\optional{,
58mode\optional{, btflags\optional{, cachesize\optional{, maxkeypage\optional{,
59minkeypage\optional{, psize\optional{, lorder}}}}}}}}}
Fred Drake38e5d272000-04-03 20:13:55 +000060
Anthony Baxter83888952002-04-23 02:11:05 +000061Open the btree format file named \var{filename}. Files never intended
62to be preserved on disk may be created by passing \code{None} as the
63\var{filename}. The optional
Fred Drake38e5d272000-04-03 20:13:55 +000064\var{flag} identifies the mode used to open the file. It may be
Gregory P. Smith57725132003-05-28 07:56:45 +000065\character{r} (read only, default), \character{w} (read-write),
Fred Drake38e5d272000-04-03 20:13:55 +000066\character{c} (read-write - create if necessary) or
67\character{n} (read-write - truncate to zero length). The other
68arguments are rarely used and are just passed to the low-level dbopen
69function. Consult the Berkeley DB documentation for their use and
70interpretation.
Fred Drake9d158811999-04-19 21:19:21 +000071\end{funcdesc}
72
73\begin{funcdesc}{rnopen}{filename\optional{, flag\optional{, mode\optional{,
74rnflags\optional{, cachesize\optional{, psize\optional{, lorder\optional{,
75reclen\optional{, bval\optional{, bfname}}}}}}}}}}
Fred Drake38e5d272000-04-03 20:13:55 +000076
Anthony Baxter83888952002-04-23 02:11:05 +000077Open a DB record format file named \var{filename}. Files never intended
78to be preserved on disk may be created by passing \code{None} as the
79\var{filename}. The optional
Fred Drake38e5d272000-04-03 20:13:55 +000080\var{flag} identifies the mode used to open the file. It may be
Gregory P. Smith57725132003-05-28 07:56:45 +000081\character{r} (read only, default), \character{w} (read-write),
Fred Drake38e5d272000-04-03 20:13:55 +000082\character{c} (read-write - create if necessary) or
83\character{n} (read-write - truncate to zero length). The other
84arguments are rarely used and are just passed to the low-level dbopen
85function. Consult the Berkeley DB documentation for their use and
86interpretation.
Fred Drake9d158811999-04-19 21:19:21 +000087\end{funcdesc}
88
89
90\begin{seealso}
91 \seemodule{dbhash}{DBM-style interface to the \module{bsddb}}
92\end{seealso}
93
Skip Montanaro6d9f45b2003-05-06 20:40:17 +000094\begin{notice}
95Beginning in 2.3 some Unix versions of Python may have a \module{bsddb185}
96module. This is present \emph{only} to allow backwards compatibility with
97systems which ship with the old Berkeley DB 1.85 database library. The
98\module{bsddb185} module should never be used directly in new code.
99\end{notice}
Fred Drake9d158811999-04-19 21:19:21 +0000100
101\subsection{Hash, BTree and Record Objects \label{bsddb-objects}}
102
Raymond Hettingerdeadbf52003-09-12 06:33:37 +0000103Once instantiated, hash, btree and record objects support
104the same methods as dictionaries. In addition, they support
Raymond Hettinger34040342003-09-16 21:45:22 +0000105the methods listed below.
106\versionchanged[Added dictionary methods]{2.3.1}
Fred Drake9d158811999-04-19 21:19:21 +0000107
108\begin{methoddesc}{close}{}
109Close the underlying file. The object can no longer be accessed. Since
110there is no open \method{open} method for these objects, to open the file
111again a new \module{bsddb} module open function must be called.
112\end{methoddesc}
113
114\begin{methoddesc}{keys}{}
115Return the list of keys contained in the DB file. The order of the list is
116unspecified and should not be relied on. In particular, the order of the
117list returned is different for different file formats.
118\end{methoddesc}
119
120\begin{methoddesc}{has_key}{key}
Fred Drake38e5d272000-04-03 20:13:55 +0000121Return \code{1} if the DB file contains the argument as a key.
Fred Drake9d158811999-04-19 21:19:21 +0000122\end{methoddesc}
123
124\begin{methoddesc}{set_location}{key}
Fred Drakee1d47152001-01-05 06:44:19 +0000125Set the cursor to the item indicated by \var{key} and return a tuple
126containing the key and its value. For binary tree databases (opened
127using \function{btopen()}), if \var{key} does not actually exist in
128the database, the cursor will point to the next item in sorted order
129and return that key and value. For other databases,
130\exception{KeyError} will be raised if \var{key} is not found in the
131database.
Fred Drake9d158811999-04-19 21:19:21 +0000132\end{methoddesc}
133
134\begin{methoddesc}{first}{}
135Set the cursor to the first item in the DB file and return it. The order of
Fred Drake29cf6821999-04-23 20:32:59 +0000136keys in the file is unspecified, except in the case of B-Tree databases.
Fred Drake9d158811999-04-19 21:19:21 +0000137\end{methoddesc}
138
139\begin{methoddesc}{next}{}
140Set the cursor to the next item in the DB file and return it. The order of
Fred Drake29cf6821999-04-23 20:32:59 +0000141keys in the file is unspecified, except in the case of B-Tree databases.
Fred Drake9d158811999-04-19 21:19:21 +0000142\end{methoddesc}
143
144\begin{methoddesc}{previous}{}
Skip Montanaro61418122002-11-17 11:09:50 +0000145Set the cursor to the previous item in the DB file and return it. The
Fred Drake29cf6821999-04-23 20:32:59 +0000146order of keys in the file is unspecified, except in the case of B-Tree
147databases. This is not supported on hashtable databases (those opened
148with \function{hashopen()}).
Fred Drake9d158811999-04-19 21:19:21 +0000149\end{methoddesc}
150
151\begin{methoddesc}{last}{}
Fred Drake2ea30f41999-04-22 14:06:36 +0000152Set the cursor to the last item in the DB file and return it. The
153order of keys in the file is unspecified. This is not supported on
154hashtable databases (those opened with \function{hashopen()}).
Fred Drake9d158811999-04-19 21:19:21 +0000155\end{methoddesc}
156
157\begin{methoddesc}{sync}{}
158Synchronize the database on disk.
159\end{methoddesc}
160
161Example:
162
163\begin{verbatim}
164>>> import bsddb
165>>> db = bsddb.btopen('/tmp/spam.db', 'c')
166>>> for i in range(10): db['%d'%i] = '%d'% (i*i)
167...
168>>> db['3']
169'9'
170>>> db.keys()
171['0', '1', '2', '3', '4', '5', '6', '7', '8', '9']
172>>> db.first()
173('0', '0')
174>>> db.next()
175('1', '1')
176>>> db.last()
177('9', '81')
178>>> db.set_location('2')
179('2', '4')
180>>> db.previous()
181('1', '1')
Raymond Hettingerdeadbf52003-09-12 06:33:37 +0000182>>> for k, v in db.iteritems():
183... print k, v
1840 0
1851 1
1862 4
1873 9
1884 16
1895 25
1906 36
1917 49
1928 64
1939 81
194>>> 8 in db
195True
Fred Drake9d158811999-04-19 21:19:21 +0000196>>> db.sync()
1970
198\end{verbatim}