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
object.
  • References/Python/Python/Data Persistence

object.__getstate__() Classes can further influence how their instances are pickled; if the class defines the method

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

persistent_id(obj) Do nothing by default. This exists so a subclass can override it. If

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

dispatch_table A pickler object’s dispatch table is a registry of reduction functions of the kind which can be declared

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

fetchmany(size=cursor.arraysize) Fetches the next set of rows of a query result, returning a list. An empty list is returned

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
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
shelve.BsdDbShelf
  • References/Python/Python/Data Persistence

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

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

gdbm.reorganize() If you have carried out a lot of deletions and would like to shrink the space used by the gdbm

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

execute(sql[, parameters]) Executes an SQL statement. The SQL statement may be parameterized (i. e. placeholders instead of

2025-01-10 15:47:30