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
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
sqlite3.Cursor.lastrowid
  • References/Python/Python/Data Persistence

lastrowid This read-only attribute provides the rowid of the last modified row. It is only set if you issued an INSERT

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

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

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

class shelve.DbfilenameShelf(filename, flag='c', protocol=None, writeback=False) A subclass of Shelf which accepts

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

shelve.open(filename, flag='c', protocol=None, writeback=False) Open a persistent dictionary. The filename specified is the

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

iterdump() Returns an iterator to dump the database in an SQL text format. Useful when saving an in-memory database for later

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

Shelf.close() Synchronize and close the persistent dict object. Operations on a closed shelf will fail with a

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

in_transaction

2025-01-10 15:47:30