sqlite3.Connection
  • References/Python/Python/Data Persistence

class sqlite3.Connection A SQLite database connection has the following attributes and methods:

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

rollback() This method rolls back any changes to the database since the last call to commit().

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

class sqlite3.Cursor A Cursor instance has the following attributes and methods.

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

executemany(sql, seq_of_parameters) Executes an SQL command against all parameter sequences or mappings found in the sequence

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

in_transaction

2025-01-10 15:47:30
dbm.dumb.dumbdbm.sync()
  • References/Python/Python/Data Persistence

dumbdbm.sync() Synchronize the on-disk directory and data files. This method is called by the Shelve.sync() method

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

exception dbm.error A tuple containing the exceptions that can be raised by each of the supported modules, with a unique exception

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

rowcount Although the Cursor class of the sqlite3 module implements this attribute, the database engine’s

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

create_aggregate(name, num_params, aggregate_class) Creates a user-defined aggregate function. The

2025-01-10 15:47:30