SQLite database cursor class.
|
|
__init__(...)
x.__init__(...) initializes x; see x.__class__.__doc__ for signature |
|
|
|
|
|
|
a new object with type S, a subtype of T
|
|
|
|
close(...)
Closes the cursor. |
|
|
|
|
execute(...)
Executes a SQL statement. |
|
|
|
|
executemany(...)
Repeatedly executes a SQL statement. |
|
|
|
|
|
|
|
fetchall(...)
Fetches one row from the resultset. |
|
|
|
|
fetchmany(...)
Fetches all rows from the resultset. |
|
|
|
|
fetchone(...)
Fetches several rows from the resultset. |
|
|
|
the next value, or raise StopIteration
|
|
|
|
|
|
|
|
|
Inherited from object:
__delattr__,
__getattribute__,
__hash__,
__reduce__,
__reduce_ex__,
__repr__,
__setattr__,
__str__
|