Class recordset
This class manages the result of a query. An instance of this class
can be created via the connection.query() method.
| Method Summary |
| |
__init__(self,
cache,
connections,
database,
content,
conditions,
order)
|
| |
__iter__(self)
|
| |
__len__(self)
This function returns the number of records in this result set. |
| |
close(self)
This function closes a record set which is no longer needed. |
__init__(self,
cache,
connections,
database,
content,
conditions,
order)
(Constructor)
-
|
__iter__(self)
(Iteration protocol support)
-
|
__len__(self)
(Length operator)
This function returns the number of records in this result set.
-
|
close(self)
This function closes a record set which is no longer needed. It
closes the underlying result set.
-
|