sqlite3.Connection.text_factory

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

2016-10-07 17:42:38
sqlite3.Cursor.executemany()

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

2016-10-07 17:42:39
sqlite3.Connection.executemany()

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

2016-10-07 17:42:36
shelve.Shelf.close()

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

2016-10-07 17:41:50
sqlite3.Connection.commit()

commit() This method commits the current transaction. If you don’t call this method, anything you did since the last call to

2016-10-07 17:42:34
pickle.Unpickler.find_class()

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

2016-10-07 17:40:41
pickle.PicklingError

exception pickle.PicklingError Error raised when an unpicklable object is encountered by Pickler. It inherits

2016-10-07 17:40:40
sqlite3.Connection.iterdump()

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

2016-10-07 17:42:36
sqlite3.version

sqlite3.version The version number of this module, as a string. This is not the version of the SQLite library.

2016-10-07 17:42:42
sqlite3.connect()

sqlite3.connect(database[, timeout, detect_types, isolation_level, check_same_thread, factory, cached_statements, uri]) Opens

2016-10-07 17:42:34