|
BaseCursor
A base for Cursor classes.
|
|
CursorStoreResultMixIn
This is a MixIn class which causes the entire result set to be
stored on the client side, i.e.
|
|
CursorUseResultMixIn
This is a MixIn class which causes the result set to be stored
in the server and sent row-by-row to client side, i.e.
|
|
CursorTupleRowsMixIn
This is a MixIn class that causes all rows to be returned as
tuples, which is the standard form required by DB API.
|
|
CursorDictRowsMixIn
This is a MixIn class that causes all rows to be returned as
dictionaries.
|
|
CursorOldDictRowsMixIn
This is a MixIn class that returns rows as dictionaries with the
same key convention as the old Mysqldb (MySQLmodule).
|
|
Cursor
This is the standard Cursor class that returns rows as tuples
and stores the result set in the client.
|
|
DictCursor
This is a Cursor class that returns rows as dictionaries and
stores the result set in the client.
|
|
SSCursor
This is a Cursor class that returns rows as tuples and stores
the result set in the server.
|
|
SSDictCursor
This is a Cursor class that returns rows as dictionaries and
stores the result set in the server.
|