blob: a25d39b98b73e596279c9cce85e673161fdf3d1e [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
Fred Drakefdccf1a2004-07-26 16:33:29 +000049\character{r} (read only), \character{w} (read-write) ,
50\character{c} (read-write - create if necessary; the default) or
Fred Drake38e5d272000-04-03 20:13:55 +000051\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
Fred Drakefdccf1a2004-07-26 16:33:29 +000065\character{r} (read only), \character{w} (read-write),
66\character{c} (read-write - create if necessary; the default) or
Fred Drake38e5d272000-04-03 20:13:55 +000067\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
Fred Drakefdccf1a2004-07-26 16:33:29 +000081\character{r} (read only), \character{w} (read-write),
82\character{c} (read-write - create if necessary; the default) or
Fred Drake38e5d272000-04-03 20:13:55 +000083\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
Skip Montanaro6d9f45b2003-05-06 20:40:17 +000090\begin{notice}
91Beginning in 2.3 some Unix versions of Python may have a \module{bsddb185}
92module. This is present \emph{only} to allow backwards compatibility with
93systems which ship with the old Berkeley DB 1.85 database library. The
94\module{bsddb185} module should never be used directly in new code.
95\end{notice}
Fred Drake9d158811999-04-19 21:19:21 +000096
Fred Drakeb86aa992004-06-24 06:03:59 +000097
98\begin{seealso}
99 \seemodule{dbhash}{DBM-style interface to the \module{bsddb}}
100\end{seealso}
101
Fred Drake9d158811999-04-19 21:19:21 +0000102\subsection{Hash, BTree and Record Objects \label{bsddb-objects}}
103
Raymond Hettingerdeadbf52003-09-12 06:33:37 +0000104Once instantiated, hash, btree and record objects support
105the same methods as dictionaries. In addition, they support
Raymond Hettinger34040342003-09-16 21:45:22 +0000106the methods listed below.
107\versionchanged[Added dictionary methods]{2.3.1}
Fred Drake9d158811999-04-19 21:19:21 +0000108
109\begin{methoddesc}{close}{}
110Close the underlying file. The object can no longer be accessed. Since
111there is no open \method{open} method for these objects, to open the file
112again a new \module{bsddb} module open function must be called.
113\end{methoddesc}
114
115\begin{methoddesc}{keys}{}
116Return the list of keys contained in the DB file. The order of the list is
117unspecified and should not be relied on. In particular, the order of the
118list returned is different for different file formats.
119\end{methoddesc}
120
121\begin{methoddesc}{has_key}{key}
Fred Drake38e5d272000-04-03 20:13:55 +0000122Return \code{1} if the DB file contains the argument as a key.
Fred Drake9d158811999-04-19 21:19:21 +0000123\end{methoddesc}
124
125\begin{methoddesc}{set_location}{key}
Fred Drakee1d47152001-01-05 06:44:19 +0000126Set the cursor to the item indicated by \var{key} and return a tuple
127containing the key and its value. For binary tree databases (opened
128using \function{btopen()}), if \var{key} does not actually exist in
129the database, the cursor will point to the next item in sorted order
130and return that key and value. For other databases,
131\exception{KeyError} will be raised if \var{key} is not found in the
132database.
Fred Drake9d158811999-04-19 21:19:21 +0000133\end{methoddesc}
134
135\begin{methoddesc}{first}{}
136Set the cursor to the first item in the DB file and return it. The order of
Fred Drake29cf6821999-04-23 20:32:59 +0000137keys in the file is unspecified, except in the case of B-Tree databases.
Fred Drakeba100c92004-08-10 19:22:48 +0000138This method raises \exception{bsddb.error} if the database is empty.
Fred Drake9d158811999-04-19 21:19:21 +0000139\end{methoddesc}
140
141\begin{methoddesc}{next}{}
142Set the cursor to the next item in the DB file and return it. The order of
Fred Drake29cf6821999-04-23 20:32:59 +0000143keys in the file is unspecified, except in the case of B-Tree databases.
Fred Drake9d158811999-04-19 21:19:21 +0000144\end{methoddesc}
145
146\begin{methoddesc}{previous}{}
Skip Montanaro61418122002-11-17 11:09:50 +0000147Set the cursor to the previous item in the DB file and return it. The
Fred Drake29cf6821999-04-23 20:32:59 +0000148order of keys in the file is unspecified, except in the case of B-Tree
149databases. This is not supported on hashtable databases (those opened
150with \function{hashopen()}).
Fred Drake9d158811999-04-19 21:19:21 +0000151\end{methoddesc}
152
153\begin{methoddesc}{last}{}
Fred Drake2ea30f41999-04-22 14:06:36 +0000154Set the cursor to the last item in the DB file and return it. The
155order of keys in the file is unspecified. This is not supported on
156hashtable databases (those opened with \function{hashopen()}).
Fred Drakeba100c92004-08-10 19:22:48 +0000157This method raises \exception{bsddb.error} if the database is empty.
Fred Drake9d158811999-04-19 21:19:21 +0000158\end{methoddesc}
159
160\begin{methoddesc}{sync}{}
161Synchronize the database on disk.
162\end{methoddesc}
163
164Example:
165
166\begin{verbatim}
167>>> import bsddb
168>>> db = bsddb.btopen('/tmp/spam.db', 'c')
169>>> for i in range(10): db['%d'%i] = '%d'% (i*i)
170...
171>>> db['3']
172'9'
173>>> db.keys()
174['0', '1', '2', '3', '4', '5', '6', '7', '8', '9']
175>>> db.first()
176('0', '0')
177>>> db.next()
178('1', '1')
179>>> db.last()
180('9', '81')
181>>> db.set_location('2')
182('2', '4')
183>>> db.previous()
184('1', '1')
Raymond Hettingerdeadbf52003-09-12 06:33:37 +0000185>>> for k, v in db.iteritems():
186... print k, v
1870 0
1881 1
1892 4
1903 9
1914 16
1925 25
1936 36
1947 49
1958 64
1969 81
Raymond Hettingerff294fe2003-12-07 13:00:25 +0000197>>> '8' in db
Raymond Hettingerdeadbf52003-09-12 06:33:37 +0000198True
Fred Drake9d158811999-04-19 21:19:21 +0000199>>> db.sync()
2000
201\end{verbatim}