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.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
marshal.dump()
  • References/Python/Python/Data Persistence

marshal.dump(value, file[, version]) Write the value on the open file. The value must be a supported type. The file must be

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

sqlite3.register_adapter(type, callable) Registers a callable to convert the custom Python type type into one of SQLite’s

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

exception pickle.PickleError Common base class for the other pickling exceptions. It inherits

2025-01-10 15:47:30
shelve.Shelf
  • References/Python/Python/Data Persistence

class shelve.Shelf(dict, protocol=None, writeback=False, keyencoding='utf-8') A subclass of

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

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

2025-01-10 15:47:30
dbm.dumb.dumbdbm.close()
  • References/Python/Python/Data Persistence

dumbdbm.close() Close the dumbdbm database.

2025-01-10 15:47:30
sqlite3.Cursor.lastrowid
  • References/Python/Python/Data Persistence

lastrowid This read-only attribute provides the rowid of the last modified row. It is only set if you issued an INSERT

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

pickle.dumps(obj, protocol=None, *, fix_imports=True) Return the pickled representation of the object as a

2025-01-10 15:47:30