sqlite3.sqlite_version_info
  • References/Python/Python/Data Persistence

sqlite3.sqlite_version_info The version number of the run-time SQLite library, as a tuple of integers.

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

object.__getnewargs_ex__() In protocols 4 and newer, classes that implements the __getnewargs_ex__() method can

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

object.__getnewargs__() This method serve a similar purpose as __getnewargs_ex__() but for protocols 2 and newer

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

cursor([cursorClass]) The cursor method accepts a single optional parameter cursorClass. If supplied, this must be

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

load_extension(path) This routine loads a SQLite extension from a shared library. You have to enable extension loading with

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

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

2025-01-10 15:47:30