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
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
dbm.gnu.gdbm.nextkey()
  • References/Python/Python/Data Persistence

gdbm.nextkey(key) Returns the key that follows key in the traversal. The following code prints every key in the database

2025-01-10 15:47:30
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
dbm.gnu.gdbm.close()
  • References/Python/Python/Data Persistence

gdbm.close() Close the gdbm database.

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.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.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.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
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