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

text_factory Using this attribute you can control what objects are returned for the TEXT data type. By default

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

marshal.dumps(value[, version]) Return the string that would be written to a file by dump(value, file). The value

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
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
pickle.Unpickler.find_class()
  • References/Python/Python/Data Persistence

find_class(module, name) Import module if necessary and return the object called name from it, where the module

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

sqlite3.sqlite_version The version number of the run-time SQLite library, as a string.

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
pickle.Unpickler.load()
  • References/Python/Python/Data Persistence

load() Read a pickled object representation from the open file object given in the constructor, and return the reconstituted

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

sqlite3.enable_callback_tracebacks(flag) By default you will not get any tracebacks in user-defined functions, aggregates, converters

2025-01-10 15:47:30