class FullyBufferedCursorFetchStrategy(CursorFetchStrategy):
A cursor strategy that buffers rows fully upon creation.
Used for operations where a result is to be delivered after the database conversation can not be continued, such as MSSQL INSERT...OUTPUT after an autocommit.
Method | __init__ |
Undocumented |
Method | fetchall |
Undocumented |
Method | fetchmany |
Undocumented |
Method | fetchone |
Undocumented |
Method | hard_close |
Undocumented |
Method | soft_close |
Undocumented |
Method | yield_per |
Undocumented |
Class Variable | __slots__ |
Undocumented |
Instance Variable | _rowbuffer |
Undocumented |
Instance Variable | alternate_cursor_description |
Undocumented |
Inherited from CursorFetchStrategy
:
Method | handle_exception |
Undocumented |