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

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

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

marshal.dump(value, file[, version]) Write the value on the open file. The value must be a supported type. The file must be

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

marshal.loads(string) Convert the string to a value. If no valid value is found, raise

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

exception dbm.ndbm.error Raised on dbm.ndbm-specific errors, such as I/O errors.

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

dbm.ndbm.library Name of the ndbm implementation library used.

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

gdbm.sync() When the database has been opened in fast mode, this method forces any unwritten data to be written to the disk

2025-01-10 15:47:30