dbm.ndbm.error
  • References/Python/Python/Data Persistence

exception dbm.ndbm.error Raised on dbm.ndbm-specific errors, such as I/O errors.

2025-01-10 15:47:30
dbm.ndbm.library
  • References/Python/Python/Data Persistence

dbm.ndbm.library Name of the ndbm implementation library used.

2025-01-10 15:47:30
marshal.load()
  • References/Python/Python/Data Persistence

marshal.load(file) Read one value from the open file and return it. If no valid value is read (e.g. because the data has a different

2025-01-10 15:47:30
dbm.gnu.open()
  • References/Python/Python/Data Persistence

dbm.gnu.open(filename[, flag[, mode]]) Open a gdbm database and return a gdbm object. The filename

2025-01-10 15:47:30
sqlite3.Connection.cursor()
  • References/Python/Python/Data Persistence

cursor([cursorClass]) The cursor method accepts a single optional parameter cursorClass. If supplied, this must be

2025-01-10 15:47:30
pickle.UnpicklingError
  • References/Python/Python/Data Persistence

exception pickle.UnpicklingError Error raised when there is a problem unpickling an object, such as a data corruption or a security

2025-01-10 15:47:30
sqlite3.Connection.close()
  • References/Python/Python/Data Persistence

close() This closes the database connection. Note that this does not automatically call commit(). If you just close

2025-01-10 15:47:30
dbm.gnu.gdbm.sync()
  • References/Python/Python/Data Persistence

gdbm.sync() When the database has been opened in fast mode, this method forces any unwritten data to be written to the disk

2025-01-10 15:47:30
copyreg.pickle()
  • References/Python/Python/Data Persistence

copyreg.pickle(type, function, constructor=None) Declares that function should be used as a “reduction” function for

2025-01-10 15:47:30
sqlite3.Connection.load_extension()
  • References/Python/Python/Data Persistence

load_extension(path) This routine loads a SQLite extension from a shared library. You have to enable extension loading with

2025-01-10 15:47:30