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

sqlite3.register_converter(typename, callable) Registers a callable to convert a bytestring from the database into a custom

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

object.__reduce__() The interface is currently defined as follows. The __reduce__() method takes no argument and

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

class sqlite3.Row A Row instance serves as a highly optimized row_factory for Connection

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

load() Read a pickled object representation from the open file object given in the constructor, and return the reconstituted

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

dump(obj) Write a pickled representation of obj to the open file object given in the constructor.

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

dbm.whichdb(filename) This function attempts to guess which of the several simple database modules available — dbm.gnu

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

enable_load_extension(enabled) This routine allows/disallows the SQLite engine to load SQLite extensions from shared libraries

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

pickle.dump(obj, file, protocol=None, *, fix_imports=True) Write a pickled representation of obj to the open

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

fast Deprecated. Enable fast mode if set to a true value. The fast mode disables the usage of memo, therefore speeding the pickling

2025-01-10 15:47:30