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

set_trace_callback(trace_callback) Registers trace_callback to be called for each SQL statement that is actually executed

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

sqlite3.complete_statement(sql) Returns

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
sqlite3.Cursor.description
  • References/Python/Python/Data Persistence

description This read-only attribute provides the column names of the last query. To remain compatible with the Python DB API

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

executescript(sql_script) This is a nonstandard shortcut that creates a cursor object by calling the cursor() method

2025-01-10 15:47:30