dbm.ndbm.ndbm.close()
  • References/Python/Python/Data Persistence

ndbm.close() Close the ndbm database.

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

dbm.dumb.open(filename[, flag[, mode]]) Open a dumbdbm database and return a dumbdbm object. The filename

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

create_function(name, num_params, func) Creates a user-defined function that you can later use from within SQL statements under

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

close() Close the cursor now (rather than whenever __del__ is called). The cursor

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

fetchone() Fetches the next row of a query result set, returning a single sequence, or

2025-01-10 15:47:30