cpython/Doc/lib/libdbm.tex

48 lines
1.7 KiB
TeX
Raw Normal View History

\section{\module{dbm} ---
1999-02-19 20:14:17 -04:00
Simple ``database'' interface}
1999-02-19 20:14:17 -04:00
\declaremodule{builtin}{dbm}
\platform{Unix}
\modulesynopsis{The standard ``database'' interface, based on ndbm.}
1994-01-01 21:22:07 -04:00
1999-02-19 20:14:17 -04:00
The \module{dbm} module provides an interface to the \UNIX{}
\code{(n)dbm} library. Dbm objects behave like mappings
(dictionaries), except that keys and values are always strings.
Printing a dbm object doesn't print the keys and values, and the
1999-03-02 12:37:17 -04:00
\method{items()} and \method{values()} methods are not supported.
1999-02-19 20:14:17 -04:00
See also the \refmodule{gdbm}\refbimodindex{gdbm} module, which
provides a similar interface using the GNU GDBM library.
1994-01-01 21:22:07 -04:00
The module defines the following constant and functions:
\begin{excdesc}{error}
1999-02-19 20:14:17 -04:00
Raised on dbm-specific errors, such as I/O errors.
\exception{KeyError} is raised for general mapping errors like
specifying an incorrect key.
1994-01-01 21:22:07 -04:00
\end{excdesc}
\begin{funcdesc}{open}{filename, \optional{flag, \optional{mode}}}
Open a dbm database and return a dbm object. The \var{filename}
argument is the name of the database file (without the \file{.dir} or
\file{.pag} extensions).
The optional \var{flag} argument can be
\code{'r'} (to open an existing database for reading only --- default),
\code{'w'} (to open an existing database for reading and writing),
\code{'c'} (which creates the database if it doesn't exist), or
\code{'n'} (which always creates a new empty database).
The optional \var{mode} argument is the \UNIX{} mode of the file, used
only when the database has to be created. It defaults to octal
\code{0666}.
1994-01-01 21:22:07 -04:00
\end{funcdesc}
\begin{seealso}
\seemodule{anydbm}{Generic interface to \code{dbm}-style databases.}
\seemodule{whichdb}{Utility module used to determine the type of an
existing database.}
\end{seealso}