Lines Matching full:database
36 Open a ``gdbm`` database and return a ``gdbm`` object. The *filename* argument
37 is the name of the database file.
44 | ``'r'`` | Open existing database for reading only |
47 | ``'w'`` | Open existing database for reading and |
50 | ``'c'`` | Open database for reading and writing, |
53 | ``'n'`` | Always create a new, empty database, open |
58 how the database is opened:
63 | ``'f'`` | Open the database in fast mode. Writes |
64 | | to the database will not be synchronized. |
67 | | to the database to be immediately written |
70 | ``'u'`` | Do not lock database. |
78 database has to be created. It defaults to octal ``0666``.
86 It's possible to loop over every key in the database using this method and the
95 every key in the database ``db``, without having to create a list in memory that
107 used by the ``gdbm`` file, this routine will reorganize the database. ``gdbm``
108 will not shorten the length of a database file except by using this
115 When the database has been opened in fast mode, this method forces any
121 Close the ``gdbm`` database.
130 Utility module used to determine the type of an existing database.