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

fetchone() Fetches the next row of a query result set, returning a single sequence, or

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

close() Close the cursor now (rather than whenever __del__ is called). The cursor

2025-01-10 15:47:30
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
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
sqlite3.version_info
  • References/Python/Python/Data Persistence

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

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
object.
  • References/Python/Python/Data Persistence

object.__reduce_ex__(protocol) Alternatively, a __reduce_ex__() method may be defined. The only difference is this

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

create_collation(name, callable) Creates a collation with the specified name and callable. The callable will

2025-01-10 15:47:30