Home | History | Annotate | Download | only in clinic

Lines Matching full:database

70 "Close the database.");
88 "Get a list of all keys in the database.");
108 "It\'s possible to loop over every key in the database using this method\n"
130 "The following code prints every key in the database db, without having\n"
165 "Reorganize the database.\n"
169 "database. GDBM will not shorten the length of a database file except\n"
189 "Flush the database to the disk file.\n"
191 "When the database has been opened in fast mode, this method forces\n"
210 "Open a dbm database and return a dbm object.\n"
212 "The filename argument is the name of the database file.\n"
214 "The optional flags argument can be \'r\' (to open an existing database\n"
215 "for reading only -- default), \'w\' (to open an existing database for\n"
216 "reading and writing), \'c\' (which creates the database if it doesn\'t\n"
217 "exist), or \'n\' (which always creates a new empty database).\n"
222 "opens the database in fast mode; altered data will not automatically\n"
224 "writes to the database, but may result in an inconsistent database\n"
225 "if the program crashes while the database is still open. Use the\n"
227 "The \'s\' flag causes all database operations to be synchronized to\n"
228 "disk. The \'u\' flag disables locking of the database file.\n"
231 "when the database has to be created. It defaults to octal 0o666.");