class documentation

class ThreadedCursorAdapter(AsyncCursor): (source)

View In Hierarchy

A cursor that can be interacted with asynchronously.

Async Method close Close the underlying cursor.
Async Method description Undocumented
Async Method execute Execute the given statement.
Async Method fetchall Undocumented
Async Method fetchone Undocumented
Async Method rowcount Undocumented
Class Variable _cursor Undocumented
Class Variable _exclusive Undocumented
async def close(self): (source)

Close the underlying cursor.

async def description(self) -> Sequence[DBAPIColumnDescription] | None: (source)
async def execute(self, operation: str, parameters: Sequence[Any] | Mapping[str, Any] = ()) -> object: (source)

Execute the given statement.

async def fetchall(self) -> Sequence[Sequence[Any]]: (source)

Undocumented

async def fetchone(self) -> Sequence[Any] | None: (source)

Undocumented

async def rowcount(self) -> int: (source)

Undocumented

Undocumented

Undocumented