sqlite3.Connection.interrupt()
  • References/Python/Python/Data Persistence

interrupt() You can call this method from a different thread to abort any queries that might be executing on the connection

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

persistent_load(pid) Raise an UnpicklingError by default. If defined, pe

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

sqlite3.sqlite_version_info The version number of the run-time SQLite library, as a tuple of integers.

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

object.__getnewargs_ex__() In protocols 4 and newer, classes that implements the __getnewargs_ex__() method can

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

row_factory You can change this attribute to a callable that accepts the cursor and the original row as a tuple and will return

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

total_changes Returns the total number of database rows that have been modified, inserted, or deleted since the database connection

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

execute(sql[, parameters]) This is a nonstandard shortcut that creates a cursor object by calling the cursor()

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

gdbm.firstkey() It’s possible to loop over every key in the database using this method and the nextkey() method

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

executescript(sql_script) This is a nonstandard convenience method for executing multiple SQL statements at once. It issues

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

ndbm.close() Close the ndbm database.

2025-01-10 15:47:30