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

pickle.loads(bytes_object, *, fix_imports=True, encoding="ASCII", errors="strict") Read a pickled object hierarchy from a

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

keys() This method returns a list of column names. Immediately after a query, it is the first member of each tuple in Cursor

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

object.__setstate__(state) Upon unpickling, if the class defines __setstate__(), it is called with the unpickled

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

sqlite3.connect(database[, timeout, detect_types, isolation_level, check_same_thread, factory, cached_statements, uri]) Opens

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

set_progress_handler(handler, n) This routine registers a callback. The callback is invoked for every n instructions

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