blob: 7fb8f76e01b4c8b4f939a9c433e0a14d805ec5cf [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
18Berkeley DB library version 3.1 or later (it is known to work with 3.1
19thru 4.1 at the time of this writing).
20
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
103Once instantiated, hash, btree and record objects support the following
104methods:
105
106\begin{methoddesc}{close}{}
107Close the underlying file. The object can no longer be accessed. Since
108there is no open \method{open} method for these objects, to open the file
109again a new \module{bsddb} module open function must be called.
110\end{methoddesc}
111
112\begin{methoddesc}{keys}{}
113Return the list of keys contained in the DB file. The order of the list is
114unspecified and should not be relied on. In particular, the order of the
115list returned is different for different file formats.
116\end{methoddesc}
117
118\begin{methoddesc}{has_key}{key}
Fred Drake38e5d272000-04-03 20:13:55 +0000119Return \code{1} if the DB file contains the argument as a key.
Fred Drake9d158811999-04-19 21:19:21 +0000120\end{methoddesc}
121
122\begin{methoddesc}{set_location}{key}
Fred Drakee1d47152001-01-05 06:44:19 +0000123Set the cursor to the item indicated by \var{key} and return a tuple
124containing the key and its value. For binary tree databases (opened
125using \function{btopen()}), if \var{key} does not actually exist in
126the database, the cursor will point to the next item in sorted order
127and return that key and value. For other databases,
128\exception{KeyError} will be raised if \var{key} is not found in the
129database.
Fred Drake9d158811999-04-19 21:19:21 +0000130\end{methoddesc}
131
132\begin{methoddesc}{first}{}
133Set the cursor to the first item in the DB file and return it. The order of
Fred Drake29cf6821999-04-23 20:32:59 +0000134keys in the file is unspecified, except in the case of B-Tree databases.
Fred Drake9d158811999-04-19 21:19:21 +0000135\end{methoddesc}
136
137\begin{methoddesc}{next}{}
138Set the cursor to the next item in the DB file and return it. The order of
Fred Drake29cf6821999-04-23 20:32:59 +0000139keys in the file is unspecified, except in the case of B-Tree databases.
Fred Drake9d158811999-04-19 21:19:21 +0000140\end{methoddesc}
141
142\begin{methoddesc}{previous}{}
Skip Montanaro61418122002-11-17 11:09:50 +0000143Set the cursor to the previous item in the DB file and return it. The
Fred Drake29cf6821999-04-23 20:32:59 +0000144order of keys in the file is unspecified, except in the case of B-Tree
145databases. This is not supported on hashtable databases (those opened
146with \function{hashopen()}).
Fred Drake9d158811999-04-19 21:19:21 +0000147\end{methoddesc}
148
149\begin{methoddesc}{last}{}
Fred Drake2ea30f41999-04-22 14:06:36 +0000150Set the cursor to the last item in the DB file and return it. The
151order of keys in the file is unspecified. This is not supported on
152hashtable databases (those opened with \function{hashopen()}).
Fred Drake9d158811999-04-19 21:19:21 +0000153\end{methoddesc}
154
155\begin{methoddesc}{sync}{}
156Synchronize the database on disk.
157\end{methoddesc}
158
159Example:
160
161\begin{verbatim}
162>>> import bsddb
163>>> db = bsddb.btopen('/tmp/spam.db', 'c')
164>>> for i in range(10): db['%d'%i] = '%d'% (i*i)
165...
166>>> db['3']
167'9'
168>>> db.keys()
169['0', '1', '2', '3', '4', '5', '6', '7', '8', '9']
170>>> db.first()
171('0', '0')
172>>> db.next()
173('1', '1')
174>>> db.last()
175('9', '81')
176>>> db.set_location('2')
177('2', '4')
178>>> db.previous()
179('1', '1')
180>>> db.sync()
1810
182\end{verbatim}