MCPcopy
hub / github.com/sqlalchemy/sqlalchemy / async_dialect

Method async_dialect

test/requirements.py:1685–1693  ·  view source on GitHub ↗

dialect makes use of await_() to invoke operations on the DBAPI.

(self)

Source from the content-addressed store, hash-verified

1683
1684 @property
1685 def async_dialect(self):
1686 """dialect makes use of await_() to invoke operations on the DBAPI."""
1687
1688 return self.asyncio + only_on(
1689 LambdaPredicate(
1690 lambda config: config.db.dialect.is_async,
1691 "Async dialect required",
1692 )
1693 )
1694
1695 @property
1696 def async_dialect_with_await_close(self):

Callers

nothing calls this directly

Calls 2

only_onFunction · 0.90
LambdaPredicateClass · 0.90

Tested by

no test coverage detected