pickle.PicklingError
  • References/Python/Python/Data Persistence

exception pickle.PicklingError Error raised when an unpicklable object is encountered by Pickler. It inherits

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

fetchall() Fetches all (remaining) rows of a query result, returning a list. Note that the cursor’s arraysize attribute can

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

dumbdbm.sync() Synchronize the on-disk directory and data files. This method is called by the Shelve.sync() method

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

exception dbm.error A tuple containing the exceptions that can be raised by each of the supported modules, with a unique exception

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

sqlite3.sqlite_version The version number of the run-time SQLite library, as a string.

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

commit() This method commits the current transaction. If you don’t call this method, anything you did since the last call to

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

isolation_level Get or set the current isolation level.

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

rollback() This method rolls back any changes to the database since the last call to commit().

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

marshal.version Indicates the format that the module uses. Version 0 is the historical format, version 1 shares interned strings

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

sqlite3.enable_callback_tracebacks(flag) By default you will not get any tracebacks in user-defined functions, aggregates, converters

2025-01-10 15:47:30