Undocumented
Class | AsyncConnection |
An asyncio proxy for a _engine.Connection . |
Class | AsyncEngine |
An asyncio proxy for a _engine.Engine . |
Class | AsyncTransaction |
An asyncio proxy for a _engine.Transaction . |
Class | AsyncConnectable |
Undocumented |
Function | _get_sync_engine_or_connection |
Undocumented |
Function | _no_insp_for_async_conn_yet |
Undocumented |
Function | _no_insp_for_async_engine_xyet |
Undocumented |
Function | async_engine_from_config |
Create a new AsyncEngine instance using a configuration dictionary. |
Function | create_async_engine |
Create a new async engine instance. |
Create a new AsyncEngine instance using a configuration dictionary.
This function is analogous to the _sa.engine_from_config
function
in SQLAlchemy Core, except that the requested dialect must be an
asyncio-compatible dialect such as :ref:`dialect-postgresql-asyncpg`.
The argument signature of the function is identical to that
of _sa.engine_from_config
.
Create a new async engine instance.
Arguments passed to _asyncio.create_async_engine
are mostly
identical to those passed to the _sa.create_engine
function.
The specified dialect must be an asyncio-compatible dialect
such as :ref:`dialect-postgresql-asyncpg`.