sqlite3.Cursor

class sqlite3.Cursor

SQLite database cursor class.

Methods

__format__ default object formatter
__new__((S, ...)
__reduce__ helper for pickle
__reduce_ex__ helper for pickle
__sizeof__(() -> int) size of object in memory, in bytes
__subclasshook__ Abstract classes can override this to customize issubclass().
close Closes the cursor.
execute Executes a SQL statement.
executemany Repeatedly executes a SQL statement.
executescript Executes a multiple SQL statements at once.
fetchall Fetches all rows from the resultset.
fetchmany Fetches several rows from the resultset.
fetchone Fetches one row from the resultset.
setinputsizes Required by DB-API.
setoutputsize Required by DB-API.