SQLAlchemy 2.0.47__cp313-cp313t-win32.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- sqlalchemy/__init__.py +283 -0
- sqlalchemy/connectors/__init__.py +18 -0
- sqlalchemy/connectors/aioodbc.py +184 -0
- sqlalchemy/connectors/asyncio.py +429 -0
- sqlalchemy/connectors/pyodbc.py +250 -0
- sqlalchemy/cyextension/__init__.py +6 -0
- sqlalchemy/cyextension/collections.cp313t-win32.pyd +0 -0
- sqlalchemy/cyextension/collections.pyx +409 -0
- sqlalchemy/cyextension/immutabledict.cp313t-win32.pyd +0 -0
- sqlalchemy/cyextension/immutabledict.pxd +8 -0
- sqlalchemy/cyextension/immutabledict.pyx +133 -0
- sqlalchemy/cyextension/processors.cp313t-win32.pyd +0 -0
- sqlalchemy/cyextension/processors.pyx +68 -0
- sqlalchemy/cyextension/resultproxy.cp313t-win32.pyd +0 -0
- sqlalchemy/cyextension/resultproxy.pyx +102 -0
- sqlalchemy/cyextension/util.cp313t-win32.pyd +0 -0
- sqlalchemy/cyextension/util.pyx +90 -0
- sqlalchemy/dialects/__init__.py +62 -0
- sqlalchemy/dialects/_typing.py +30 -0
- sqlalchemy/dialects/mssql/__init__.py +88 -0
- sqlalchemy/dialects/mssql/aioodbc.py +63 -0
- sqlalchemy/dialects/mssql/base.py +4093 -0
- sqlalchemy/dialects/mssql/information_schema.py +285 -0
- sqlalchemy/dialects/mssql/json.py +129 -0
- sqlalchemy/dialects/mssql/provision.py +185 -0
- sqlalchemy/dialects/mssql/pymssql.py +126 -0
- sqlalchemy/dialects/mssql/pyodbc.py +760 -0
- sqlalchemy/dialects/mysql/__init__.py +104 -0
- sqlalchemy/dialects/mysql/aiomysql.py +250 -0
- sqlalchemy/dialects/mysql/asyncmy.py +231 -0
- sqlalchemy/dialects/mysql/base.py +3949 -0
- sqlalchemy/dialects/mysql/cymysql.py +106 -0
- sqlalchemy/dialects/mysql/dml.py +225 -0
- sqlalchemy/dialects/mysql/enumerated.py +282 -0
- sqlalchemy/dialects/mysql/expression.py +146 -0
- sqlalchemy/dialects/mysql/json.py +91 -0
- sqlalchemy/dialects/mysql/mariadb.py +72 -0
- sqlalchemy/dialects/mysql/mariadbconnector.py +322 -0
- sqlalchemy/dialects/mysql/mysqlconnector.py +302 -0
- sqlalchemy/dialects/mysql/mysqldb.py +314 -0
- sqlalchemy/dialects/mysql/provision.py +153 -0
- sqlalchemy/dialects/mysql/pymysql.py +158 -0
- sqlalchemy/dialects/mysql/pyodbc.py +157 -0
- sqlalchemy/dialects/mysql/reflection.py +727 -0
- sqlalchemy/dialects/mysql/reserved_words.py +570 -0
- sqlalchemy/dialects/mysql/types.py +835 -0
- sqlalchemy/dialects/oracle/__init__.py +81 -0
- sqlalchemy/dialects/oracle/base.py +3802 -0
- sqlalchemy/dialects/oracle/cx_oracle.py +1555 -0
- sqlalchemy/dialects/oracle/dictionary.py +507 -0
- sqlalchemy/dialects/oracle/oracledb.py +941 -0
- sqlalchemy/dialects/oracle/provision.py +297 -0
- sqlalchemy/dialects/oracle/types.py +316 -0
- sqlalchemy/dialects/oracle/vector.py +365 -0
- sqlalchemy/dialects/postgresql/__init__.py +167 -0
- sqlalchemy/dialects/postgresql/_psycopg_common.py +189 -0
- sqlalchemy/dialects/postgresql/array.py +519 -0
- sqlalchemy/dialects/postgresql/asyncpg.py +1284 -0
- sqlalchemy/dialects/postgresql/base.py +5378 -0
- sqlalchemy/dialects/postgresql/dml.py +339 -0
- sqlalchemy/dialects/postgresql/ext.py +540 -0
- sqlalchemy/dialects/postgresql/hstore.py +406 -0
- sqlalchemy/dialects/postgresql/json.py +404 -0
- sqlalchemy/dialects/postgresql/named_types.py +524 -0
- sqlalchemy/dialects/postgresql/operators.py +129 -0
- sqlalchemy/dialects/postgresql/pg8000.py +669 -0
- sqlalchemy/dialects/postgresql/pg_catalog.py +326 -0
- sqlalchemy/dialects/postgresql/provision.py +183 -0
- sqlalchemy/dialects/postgresql/psycopg.py +862 -0
- sqlalchemy/dialects/postgresql/psycopg2.py +892 -0
- sqlalchemy/dialects/postgresql/psycopg2cffi.py +61 -0
- sqlalchemy/dialects/postgresql/ranges.py +1031 -0
- sqlalchemy/dialects/postgresql/types.py +313 -0
- sqlalchemy/dialects/sqlite/__init__.py +57 -0
- sqlalchemy/dialects/sqlite/aiosqlite.py +482 -0
- sqlalchemy/dialects/sqlite/base.py +3056 -0
- sqlalchemy/dialects/sqlite/dml.py +263 -0
- sqlalchemy/dialects/sqlite/json.py +92 -0
- sqlalchemy/dialects/sqlite/provision.py +229 -0
- sqlalchemy/dialects/sqlite/pysqlcipher.py +157 -0
- sqlalchemy/dialects/sqlite/pysqlite.py +756 -0
- sqlalchemy/dialects/type_migration_guidelines.txt +145 -0
- sqlalchemy/engine/__init__.py +62 -0
- sqlalchemy/engine/_py_processors.py +136 -0
- sqlalchemy/engine/_py_row.py +128 -0
- sqlalchemy/engine/_py_util.py +74 -0
- sqlalchemy/engine/base.py +3390 -0
- sqlalchemy/engine/characteristics.py +155 -0
- sqlalchemy/engine/create.py +893 -0
- sqlalchemy/engine/cursor.py +2298 -0
- sqlalchemy/engine/default.py +2394 -0
- sqlalchemy/engine/events.py +965 -0
- sqlalchemy/engine/interfaces.py +3471 -0
- sqlalchemy/engine/mock.py +134 -0
- sqlalchemy/engine/processors.py +61 -0
- sqlalchemy/engine/reflection.py +2102 -0
- sqlalchemy/engine/result.py +2399 -0
- sqlalchemy/engine/row.py +400 -0
- sqlalchemy/engine/strategies.py +16 -0
- sqlalchemy/engine/url.py +924 -0
- sqlalchemy/engine/util.py +167 -0
- sqlalchemy/event/__init__.py +26 -0
- sqlalchemy/event/api.py +220 -0
- sqlalchemy/event/attr.py +676 -0
- sqlalchemy/event/base.py +472 -0
- sqlalchemy/event/legacy.py +258 -0
- sqlalchemy/event/registry.py +390 -0
- sqlalchemy/events.py +17 -0
- sqlalchemy/exc.py +832 -0
- sqlalchemy/ext/__init__.py +11 -0
- sqlalchemy/ext/associationproxy.py +2027 -0
- sqlalchemy/ext/asyncio/__init__.py +25 -0
- sqlalchemy/ext/asyncio/base.py +281 -0
- sqlalchemy/ext/asyncio/engine.py +1471 -0
- sqlalchemy/ext/asyncio/exc.py +21 -0
- sqlalchemy/ext/asyncio/result.py +965 -0
- sqlalchemy/ext/asyncio/scoping.py +1599 -0
- sqlalchemy/ext/asyncio/session.py +1947 -0
- sqlalchemy/ext/automap.py +1701 -0
- sqlalchemy/ext/baked.py +570 -0
- sqlalchemy/ext/compiler.py +600 -0
- sqlalchemy/ext/declarative/__init__.py +65 -0
- sqlalchemy/ext/declarative/extensions.py +564 -0
- sqlalchemy/ext/horizontal_shard.py +478 -0
- sqlalchemy/ext/hybrid.py +1535 -0
- sqlalchemy/ext/indexable.py +364 -0
- sqlalchemy/ext/instrumentation.py +450 -0
- sqlalchemy/ext/mutable.py +1085 -0
- sqlalchemy/ext/mypy/__init__.py +6 -0
- sqlalchemy/ext/mypy/apply.py +324 -0
- sqlalchemy/ext/mypy/decl_class.py +515 -0
- sqlalchemy/ext/mypy/infer.py +590 -0
- sqlalchemy/ext/mypy/names.py +335 -0
- sqlalchemy/ext/mypy/plugin.py +303 -0
- sqlalchemy/ext/mypy/util.py +357 -0
- sqlalchemy/ext/orderinglist.py +439 -0
- sqlalchemy/ext/serializer.py +185 -0
- sqlalchemy/future/__init__.py +16 -0
- sqlalchemy/future/engine.py +15 -0
- sqlalchemy/inspection.py +174 -0
- sqlalchemy/log.py +288 -0
- sqlalchemy/orm/__init__.py +171 -0
- sqlalchemy/orm/_orm_constructors.py +2661 -0
- sqlalchemy/orm/_typing.py +179 -0
- sqlalchemy/orm/attributes.py +2845 -0
- sqlalchemy/orm/base.py +971 -0
- sqlalchemy/orm/bulk_persistence.py +2135 -0
- sqlalchemy/orm/clsregistry.py +571 -0
- sqlalchemy/orm/collections.py +1627 -0
- sqlalchemy/orm/context.py +3334 -0
- sqlalchemy/orm/decl_api.py +2004 -0
- sqlalchemy/orm/decl_base.py +2192 -0
- sqlalchemy/orm/dependency.py +1302 -0
- sqlalchemy/orm/descriptor_props.py +1092 -0
- sqlalchemy/orm/dynamic.py +300 -0
- sqlalchemy/orm/evaluator.py +379 -0
- sqlalchemy/orm/events.py +3252 -0
- sqlalchemy/orm/exc.py +237 -0
- sqlalchemy/orm/identity.py +302 -0
- sqlalchemy/orm/instrumentation.py +754 -0
- sqlalchemy/orm/interfaces.py +1496 -0
- sqlalchemy/orm/loading.py +1686 -0
- sqlalchemy/orm/mapped_collection.py +557 -0
- sqlalchemy/orm/mapper.py +4444 -0
- sqlalchemy/orm/path_registry.py +809 -0
- sqlalchemy/orm/persistence.py +1788 -0
- sqlalchemy/orm/properties.py +935 -0
- sqlalchemy/orm/query.py +3459 -0
- sqlalchemy/orm/relationships.py +3508 -0
- sqlalchemy/orm/scoping.py +2148 -0
- sqlalchemy/orm/session.py +5280 -0
- sqlalchemy/orm/state.py +1168 -0
- sqlalchemy/orm/state_changes.py +196 -0
- sqlalchemy/orm/strategies.py +3470 -0
- sqlalchemy/orm/strategy_options.py +2568 -0
- sqlalchemy/orm/sync.py +164 -0
- sqlalchemy/orm/unitofwork.py +796 -0
- sqlalchemy/orm/util.py +2403 -0
- sqlalchemy/orm/writeonly.py +674 -0
- sqlalchemy/pool/__init__.py +44 -0
- sqlalchemy/pool/base.py +1524 -0
- sqlalchemy/pool/events.py +375 -0
- sqlalchemy/pool/impl.py +588 -0
- sqlalchemy/py.typed +0 -0
- sqlalchemy/schema.py +69 -0
- sqlalchemy/sql/__init__.py +145 -0
- sqlalchemy/sql/_dml_constructors.py +132 -0
- sqlalchemy/sql/_elements_constructors.py +1872 -0
- sqlalchemy/sql/_orm_types.py +20 -0
- sqlalchemy/sql/_py_util.py +75 -0
- sqlalchemy/sql/_selectable_constructors.py +763 -0
- sqlalchemy/sql/_typing.py +482 -0
- sqlalchemy/sql/annotation.py +587 -0
- sqlalchemy/sql/base.py +2293 -0
- sqlalchemy/sql/cache_key.py +1057 -0
- sqlalchemy/sql/coercions.py +1404 -0
- sqlalchemy/sql/compiler.py +8081 -0
- sqlalchemy/sql/crud.py +1752 -0
- sqlalchemy/sql/ddl.py +1444 -0
- sqlalchemy/sql/default_comparator.py +551 -0
- sqlalchemy/sql/dml.py +1850 -0
- sqlalchemy/sql/elements.py +5589 -0
- sqlalchemy/sql/events.py +458 -0
- sqlalchemy/sql/expression.py +159 -0
- sqlalchemy/sql/functions.py +2158 -0
- sqlalchemy/sql/lambdas.py +1442 -0
- sqlalchemy/sql/naming.py +209 -0
- sqlalchemy/sql/operators.py +2623 -0
- sqlalchemy/sql/roles.py +323 -0
- sqlalchemy/sql/schema.py +6222 -0
- sqlalchemy/sql/selectable.py +7265 -0
- sqlalchemy/sql/sqltypes.py +3930 -0
- sqlalchemy/sql/traversals.py +1024 -0
- sqlalchemy/sql/type_api.py +2368 -0
- sqlalchemy/sql/util.py +1485 -0
- sqlalchemy/sql/visitors.py +1164 -0
- sqlalchemy/testing/__init__.py +96 -0
- sqlalchemy/testing/assertions.py +994 -0
- sqlalchemy/testing/assertsql.py +520 -0
- sqlalchemy/testing/asyncio.py +135 -0
- sqlalchemy/testing/config.py +434 -0
- sqlalchemy/testing/engines.py +483 -0
- sqlalchemy/testing/entities.py +117 -0
- sqlalchemy/testing/exclusions.py +476 -0
- sqlalchemy/testing/fixtures/__init__.py +28 -0
- sqlalchemy/testing/fixtures/base.py +384 -0
- sqlalchemy/testing/fixtures/mypy.py +332 -0
- sqlalchemy/testing/fixtures/orm.py +227 -0
- sqlalchemy/testing/fixtures/sql.py +482 -0
- sqlalchemy/testing/pickleable.py +155 -0
- sqlalchemy/testing/plugin/__init__.py +6 -0
- sqlalchemy/testing/plugin/bootstrap.py +51 -0
- sqlalchemy/testing/plugin/plugin_base.py +828 -0
- sqlalchemy/testing/plugin/pytestplugin.py +892 -0
- sqlalchemy/testing/profiling.py +329 -0
- sqlalchemy/testing/provision.py +603 -0
- sqlalchemy/testing/requirements.py +1945 -0
- sqlalchemy/testing/schema.py +198 -0
- sqlalchemy/testing/suite/__init__.py +19 -0
- sqlalchemy/testing/suite/test_cte.py +237 -0
- sqlalchemy/testing/suite/test_ddl.py +389 -0
- sqlalchemy/testing/suite/test_deprecations.py +153 -0
- sqlalchemy/testing/suite/test_dialect.py +776 -0
- sqlalchemy/testing/suite/test_insert.py +630 -0
- sqlalchemy/testing/suite/test_reflection.py +3557 -0
- sqlalchemy/testing/suite/test_results.py +504 -0
- sqlalchemy/testing/suite/test_rowcount.py +258 -0
- sqlalchemy/testing/suite/test_select.py +2010 -0
- sqlalchemy/testing/suite/test_sequence.py +317 -0
- sqlalchemy/testing/suite/test_types.py +2147 -0
- sqlalchemy/testing/suite/test_unicode_ddl.py +189 -0
- sqlalchemy/testing/suite/test_update_delete.py +139 -0
- sqlalchemy/testing/util.py +535 -0
- sqlalchemy/testing/warnings.py +52 -0
- sqlalchemy/types.py +74 -0
- sqlalchemy/util/__init__.py +162 -0
- sqlalchemy/util/_collections.py +712 -0
- sqlalchemy/util/_concurrency_py3k.py +288 -0
- sqlalchemy/util/_has_cy.py +40 -0
- sqlalchemy/util/_py_collections.py +541 -0
- sqlalchemy/util/compat.py +421 -0
- sqlalchemy/util/concurrency.py +110 -0
- sqlalchemy/util/deprecations.py +401 -0
- sqlalchemy/util/langhelpers.py +2203 -0
- sqlalchemy/util/preloaded.py +150 -0
- sqlalchemy/util/queue.py +322 -0
- sqlalchemy/util/tool_support.py +201 -0
- sqlalchemy/util/topological.py +120 -0
- sqlalchemy/util/typing.py +734 -0
- sqlalchemy-2.0.47.dist-info/METADATA +243 -0
- sqlalchemy-2.0.47.dist-info/RECORD +274 -0
- sqlalchemy-2.0.47.dist-info/WHEEL +5 -0
- sqlalchemy-2.0.47.dist-info/licenses/LICENSE +19 -0
- sqlalchemy-2.0.47.dist-info/top_level.txt +1 -0
|
@@ -0,0 +1,482 @@
|
|
|
1
|
+
# dialects/sqlite/aiosqlite.py
|
|
2
|
+
# Copyright (C) 2005-2026 the SQLAlchemy authors and contributors
|
|
3
|
+
# <see AUTHORS file>
|
|
4
|
+
#
|
|
5
|
+
# This module is part of SQLAlchemy and is released under
|
|
6
|
+
# the MIT License: https://www.opensource.org/licenses/mit-license.php
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
r"""
|
|
10
|
+
|
|
11
|
+
.. dialect:: sqlite+aiosqlite
|
|
12
|
+
:name: aiosqlite
|
|
13
|
+
:dbapi: aiosqlite
|
|
14
|
+
:connectstring: sqlite+aiosqlite:///file_path
|
|
15
|
+
:url: https://pypi.org/project/aiosqlite/
|
|
16
|
+
|
|
17
|
+
The aiosqlite dialect provides support for the SQLAlchemy asyncio interface
|
|
18
|
+
running on top of pysqlite.
|
|
19
|
+
|
|
20
|
+
aiosqlite is a wrapper around pysqlite that uses a background thread for
|
|
21
|
+
each connection. It does not actually use non-blocking IO, as SQLite
|
|
22
|
+
databases are not socket-based. However it does provide a working asyncio
|
|
23
|
+
interface that's useful for testing and prototyping purposes.
|
|
24
|
+
|
|
25
|
+
Using a special asyncio mediation layer, the aiosqlite dialect is usable
|
|
26
|
+
as the backend for the :ref:`SQLAlchemy asyncio <asyncio_toplevel>`
|
|
27
|
+
extension package.
|
|
28
|
+
|
|
29
|
+
This dialect should normally be used only with the
|
|
30
|
+
:func:`_asyncio.create_async_engine` engine creation function::
|
|
31
|
+
|
|
32
|
+
from sqlalchemy.ext.asyncio import create_async_engine
|
|
33
|
+
|
|
34
|
+
engine = create_async_engine("sqlite+aiosqlite:///filename")
|
|
35
|
+
|
|
36
|
+
The URL passes through all arguments to the ``pysqlite`` driver, so all
|
|
37
|
+
connection arguments are the same as they are for that of :ref:`pysqlite`.
|
|
38
|
+
|
|
39
|
+
.. _aiosqlite_udfs:
|
|
40
|
+
|
|
41
|
+
User-Defined Functions
|
|
42
|
+
----------------------
|
|
43
|
+
|
|
44
|
+
aiosqlite extends pysqlite to support async, so we can create our own user-defined functions (UDFs)
|
|
45
|
+
in Python and use them directly in SQLite queries as described here: :ref:`pysqlite_udfs`.
|
|
46
|
+
|
|
47
|
+
.. _aiosqlite_serializable:
|
|
48
|
+
|
|
49
|
+
Serializable isolation / Savepoints / Transactional DDL (asyncio version)
|
|
50
|
+
-------------------------------------------------------------------------
|
|
51
|
+
|
|
52
|
+
A newly revised version of this important section is now available
|
|
53
|
+
at the top level of the SQLAlchemy SQLite documentation, in the section
|
|
54
|
+
:ref:`sqlite_transactions`.
|
|
55
|
+
|
|
56
|
+
|
|
57
|
+
.. _aiosqlite_pooling:
|
|
58
|
+
|
|
59
|
+
Pooling Behavior
|
|
60
|
+
----------------
|
|
61
|
+
|
|
62
|
+
The SQLAlchemy ``aiosqlite`` DBAPI establishes the connection pool differently
|
|
63
|
+
based on the kind of SQLite database that's requested:
|
|
64
|
+
|
|
65
|
+
* When a ``:memory:`` SQLite database is specified, the dialect by default
|
|
66
|
+
will use :class:`.StaticPool`. This pool maintains a single
|
|
67
|
+
connection, so that all access to the engine
|
|
68
|
+
use the same ``:memory:`` database.
|
|
69
|
+
* When a file-based database is specified, the dialect will use
|
|
70
|
+
:class:`.AsyncAdaptedQueuePool` as the source of connections.
|
|
71
|
+
|
|
72
|
+
.. versionchanged:: 2.0.38
|
|
73
|
+
|
|
74
|
+
SQLite file database engines now use :class:`.AsyncAdaptedQueuePool` by default.
|
|
75
|
+
Previously, :class:`.NullPool` were used. The :class:`.NullPool` class
|
|
76
|
+
may be used by specifying it via the
|
|
77
|
+
:paramref:`_sa.create_engine.poolclass` parameter.
|
|
78
|
+
|
|
79
|
+
""" # noqa
|
|
80
|
+
from __future__ import annotations
|
|
81
|
+
|
|
82
|
+
import asyncio
|
|
83
|
+
from collections import deque
|
|
84
|
+
from functools import partial
|
|
85
|
+
from threading import Thread
|
|
86
|
+
from types import ModuleType
|
|
87
|
+
from typing import Any
|
|
88
|
+
from typing import cast
|
|
89
|
+
from typing import Deque
|
|
90
|
+
from typing import Iterator
|
|
91
|
+
from typing import NoReturn
|
|
92
|
+
from typing import Optional
|
|
93
|
+
from typing import Sequence
|
|
94
|
+
from typing import TYPE_CHECKING
|
|
95
|
+
from typing import Union
|
|
96
|
+
|
|
97
|
+
from .base import SQLiteExecutionContext
|
|
98
|
+
from .pysqlite import SQLiteDialect_pysqlite
|
|
99
|
+
from ... import pool
|
|
100
|
+
from ... import util
|
|
101
|
+
from ...connectors.asyncio import AsyncAdapt_dbapi_module
|
|
102
|
+
from ...connectors.asyncio import AsyncAdapt_terminate
|
|
103
|
+
from ...engine import AdaptedConnection
|
|
104
|
+
from ...util.concurrency import await_fallback
|
|
105
|
+
from ...util.concurrency import await_only
|
|
106
|
+
|
|
107
|
+
if TYPE_CHECKING:
|
|
108
|
+
from ...connectors.asyncio import AsyncIODBAPIConnection
|
|
109
|
+
from ...connectors.asyncio import AsyncIODBAPICursor
|
|
110
|
+
from ...engine.interfaces import _DBAPICursorDescription
|
|
111
|
+
from ...engine.interfaces import _DBAPIMultiExecuteParams
|
|
112
|
+
from ...engine.interfaces import _DBAPISingleExecuteParams
|
|
113
|
+
from ...engine.interfaces import DBAPIConnection
|
|
114
|
+
from ...engine.interfaces import DBAPICursor
|
|
115
|
+
from ...engine.interfaces import DBAPIModule
|
|
116
|
+
from ...engine.url import URL
|
|
117
|
+
from ...pool.base import PoolProxiedConnection
|
|
118
|
+
|
|
119
|
+
|
|
120
|
+
class AsyncAdapt_aiosqlite_cursor:
|
|
121
|
+
# TODO: base on connectors/asyncio.py
|
|
122
|
+
# see #10415
|
|
123
|
+
|
|
124
|
+
__slots__ = (
|
|
125
|
+
"_adapt_connection",
|
|
126
|
+
"_connection",
|
|
127
|
+
"description",
|
|
128
|
+
"await_",
|
|
129
|
+
"_rows",
|
|
130
|
+
"arraysize",
|
|
131
|
+
"rowcount",
|
|
132
|
+
"lastrowid",
|
|
133
|
+
)
|
|
134
|
+
|
|
135
|
+
server_side = False
|
|
136
|
+
|
|
137
|
+
def __init__(self, adapt_connection: AsyncAdapt_aiosqlite_connection):
|
|
138
|
+
self._adapt_connection = adapt_connection
|
|
139
|
+
self._connection = adapt_connection._connection
|
|
140
|
+
self.await_ = adapt_connection.await_
|
|
141
|
+
self.arraysize = 1
|
|
142
|
+
self.rowcount = -1
|
|
143
|
+
self.description: Optional[_DBAPICursorDescription] = None
|
|
144
|
+
self._rows: Deque[Any] = deque()
|
|
145
|
+
|
|
146
|
+
async def _async_soft_close(self) -> None:
|
|
147
|
+
return
|
|
148
|
+
|
|
149
|
+
def close(self) -> None:
|
|
150
|
+
self._rows.clear()
|
|
151
|
+
|
|
152
|
+
def execute(
|
|
153
|
+
self,
|
|
154
|
+
operation: Any,
|
|
155
|
+
parameters: Optional[_DBAPISingleExecuteParams] = None,
|
|
156
|
+
) -> Any:
|
|
157
|
+
|
|
158
|
+
try:
|
|
159
|
+
_cursor: AsyncIODBAPICursor = self.await_(self._connection.cursor()) # type: ignore[arg-type] # noqa: E501
|
|
160
|
+
|
|
161
|
+
if parameters is None:
|
|
162
|
+
self.await_(_cursor.execute(operation))
|
|
163
|
+
else:
|
|
164
|
+
self.await_(_cursor.execute(operation, parameters))
|
|
165
|
+
|
|
166
|
+
if _cursor.description:
|
|
167
|
+
self.description = _cursor.description
|
|
168
|
+
self.lastrowid = self.rowcount = -1
|
|
169
|
+
|
|
170
|
+
if not self.server_side:
|
|
171
|
+
self._rows = deque(self.await_(_cursor.fetchall()))
|
|
172
|
+
else:
|
|
173
|
+
self.description = None
|
|
174
|
+
self.lastrowid = _cursor.lastrowid
|
|
175
|
+
self.rowcount = _cursor.rowcount
|
|
176
|
+
|
|
177
|
+
if not self.server_side:
|
|
178
|
+
self.await_(_cursor.close())
|
|
179
|
+
else:
|
|
180
|
+
self._cursor = _cursor # type: ignore[misc]
|
|
181
|
+
except Exception as error:
|
|
182
|
+
self._adapt_connection._handle_exception(error)
|
|
183
|
+
|
|
184
|
+
def executemany(
|
|
185
|
+
self,
|
|
186
|
+
operation: Any,
|
|
187
|
+
seq_of_parameters: _DBAPIMultiExecuteParams,
|
|
188
|
+
) -> Any:
|
|
189
|
+
try:
|
|
190
|
+
_cursor: AsyncIODBAPICursor = self.await_(self._connection.cursor()) # type: ignore[arg-type] # noqa: E501
|
|
191
|
+
self.await_(_cursor.executemany(operation, seq_of_parameters))
|
|
192
|
+
self.description = None
|
|
193
|
+
self.lastrowid = _cursor.lastrowid
|
|
194
|
+
self.rowcount = _cursor.rowcount
|
|
195
|
+
self.await_(_cursor.close())
|
|
196
|
+
except Exception as error:
|
|
197
|
+
self._adapt_connection._handle_exception(error)
|
|
198
|
+
|
|
199
|
+
def setinputsizes(self, *inputsizes: Any) -> None:
|
|
200
|
+
pass
|
|
201
|
+
|
|
202
|
+
def __iter__(self) -> Iterator[Any]:
|
|
203
|
+
while self._rows:
|
|
204
|
+
yield self._rows.popleft()
|
|
205
|
+
|
|
206
|
+
def fetchone(self) -> Optional[Any]:
|
|
207
|
+
if self._rows:
|
|
208
|
+
return self._rows.popleft()
|
|
209
|
+
else:
|
|
210
|
+
return None
|
|
211
|
+
|
|
212
|
+
def fetchmany(self, size: Optional[int] = None) -> Sequence[Any]:
|
|
213
|
+
if size is None:
|
|
214
|
+
size = self.arraysize
|
|
215
|
+
|
|
216
|
+
rr = self._rows
|
|
217
|
+
return [rr.popleft() for _ in range(min(size, len(rr)))]
|
|
218
|
+
|
|
219
|
+
def fetchall(self) -> Sequence[Any]:
|
|
220
|
+
retval = list(self._rows)
|
|
221
|
+
self._rows.clear()
|
|
222
|
+
return retval
|
|
223
|
+
|
|
224
|
+
|
|
225
|
+
class AsyncAdapt_aiosqlite_ss_cursor(AsyncAdapt_aiosqlite_cursor):
|
|
226
|
+
# TODO: base on connectors/asyncio.py
|
|
227
|
+
# see #10415
|
|
228
|
+
__slots__ = "_cursor"
|
|
229
|
+
|
|
230
|
+
server_side = True
|
|
231
|
+
|
|
232
|
+
def __init__(self, *arg: Any, **kw: Any) -> None:
|
|
233
|
+
super().__init__(*arg, **kw)
|
|
234
|
+
self._cursor: Optional[AsyncIODBAPICursor] = None
|
|
235
|
+
|
|
236
|
+
def close(self) -> None:
|
|
237
|
+
if self._cursor is not None:
|
|
238
|
+
self.await_(self._cursor.close())
|
|
239
|
+
self._cursor = None
|
|
240
|
+
|
|
241
|
+
def fetchone(self) -> Optional[Any]:
|
|
242
|
+
assert self._cursor is not None
|
|
243
|
+
return self.await_(self._cursor.fetchone())
|
|
244
|
+
|
|
245
|
+
def fetchmany(self, size: Optional[int] = None) -> Sequence[Any]:
|
|
246
|
+
assert self._cursor is not None
|
|
247
|
+
if size is None:
|
|
248
|
+
size = self.arraysize
|
|
249
|
+
return self.await_(self._cursor.fetchmany(size=size))
|
|
250
|
+
|
|
251
|
+
def fetchall(self) -> Sequence[Any]:
|
|
252
|
+
assert self._cursor is not None
|
|
253
|
+
return self.await_(self._cursor.fetchall())
|
|
254
|
+
|
|
255
|
+
|
|
256
|
+
class AsyncAdapt_aiosqlite_connection(AsyncAdapt_terminate, AdaptedConnection):
|
|
257
|
+
await_ = staticmethod(await_only)
|
|
258
|
+
__slots__ = ("dbapi",)
|
|
259
|
+
|
|
260
|
+
def __init__(self, dbapi: Any, connection: AsyncIODBAPIConnection) -> None:
|
|
261
|
+
self.dbapi = dbapi
|
|
262
|
+
self._connection = connection
|
|
263
|
+
|
|
264
|
+
@property
|
|
265
|
+
def isolation_level(self) -> Optional[str]:
|
|
266
|
+
return cast(str, self._connection.isolation_level)
|
|
267
|
+
|
|
268
|
+
@isolation_level.setter
|
|
269
|
+
def isolation_level(self, value: Optional[str]) -> None:
|
|
270
|
+
# aiosqlite's isolation_level setter works outside the Thread
|
|
271
|
+
# that it's supposed to, necessitating setting check_same_thread=False.
|
|
272
|
+
# for improved stability, we instead invent our own awaitable version
|
|
273
|
+
# using aiosqlite's async queue directly.
|
|
274
|
+
|
|
275
|
+
def set_iso(
|
|
276
|
+
connection: AsyncAdapt_aiosqlite_connection, value: Optional[str]
|
|
277
|
+
) -> None:
|
|
278
|
+
connection.isolation_level = value
|
|
279
|
+
|
|
280
|
+
function = partial(set_iso, self._connection._conn, value)
|
|
281
|
+
future = asyncio.get_event_loop().create_future()
|
|
282
|
+
|
|
283
|
+
self._connection._tx.put_nowait((future, function))
|
|
284
|
+
|
|
285
|
+
try:
|
|
286
|
+
self.await_(future)
|
|
287
|
+
except Exception as error:
|
|
288
|
+
self._handle_exception(error)
|
|
289
|
+
|
|
290
|
+
def create_function(self, *args: Any, **kw: Any) -> None:
|
|
291
|
+
try:
|
|
292
|
+
self.await_(self._connection.create_function(*args, **kw))
|
|
293
|
+
except Exception as error:
|
|
294
|
+
self._handle_exception(error)
|
|
295
|
+
|
|
296
|
+
def cursor(self, server_side: bool = False) -> AsyncAdapt_aiosqlite_cursor:
|
|
297
|
+
if server_side:
|
|
298
|
+
return AsyncAdapt_aiosqlite_ss_cursor(self)
|
|
299
|
+
else:
|
|
300
|
+
return AsyncAdapt_aiosqlite_cursor(self)
|
|
301
|
+
|
|
302
|
+
def execute(self, *args: Any, **kw: Any) -> Any:
|
|
303
|
+
return self.await_(self._connection.execute(*args, **kw))
|
|
304
|
+
|
|
305
|
+
def rollback(self) -> None:
|
|
306
|
+
try:
|
|
307
|
+
self.await_(self._connection.rollback())
|
|
308
|
+
except Exception as error:
|
|
309
|
+
self._handle_exception(error)
|
|
310
|
+
|
|
311
|
+
def commit(self) -> None:
|
|
312
|
+
try:
|
|
313
|
+
self.await_(self._connection.commit())
|
|
314
|
+
except Exception as error:
|
|
315
|
+
self._handle_exception(error)
|
|
316
|
+
|
|
317
|
+
def close(self) -> None:
|
|
318
|
+
try:
|
|
319
|
+
self.await_(self._connection.close())
|
|
320
|
+
except ValueError:
|
|
321
|
+
# this is undocumented for aiosqlite, that ValueError
|
|
322
|
+
# was raised if .close() was called more than once, which is
|
|
323
|
+
# both not customary for DBAPI and is also not a DBAPI.Error
|
|
324
|
+
# exception. This is now fixed in aiosqlite via my PR
|
|
325
|
+
# https://github.com/omnilib/aiosqlite/pull/238, so we can be
|
|
326
|
+
# assured this will not become some other kind of exception,
|
|
327
|
+
# since it doesn't raise anymore.
|
|
328
|
+
|
|
329
|
+
pass
|
|
330
|
+
except Exception as error:
|
|
331
|
+
self._handle_exception(error)
|
|
332
|
+
|
|
333
|
+
def _handle_exception(self, error: Exception) -> NoReturn:
|
|
334
|
+
if (
|
|
335
|
+
isinstance(error, ValueError)
|
|
336
|
+
and error.args[0] == "no active connection"
|
|
337
|
+
):
|
|
338
|
+
raise self.dbapi.sqlite.OperationalError(
|
|
339
|
+
"no active connection"
|
|
340
|
+
) from error
|
|
341
|
+
else:
|
|
342
|
+
raise error
|
|
343
|
+
|
|
344
|
+
async def _terminate_graceful_close(self) -> None:
|
|
345
|
+
"""Try to close connection gracefully"""
|
|
346
|
+
await self._connection.close()
|
|
347
|
+
|
|
348
|
+
def _terminate_force_close(self) -> None:
|
|
349
|
+
"""Terminate the connection"""
|
|
350
|
+
|
|
351
|
+
# this was added in aiosqlite 0.22.1. if stop() is not present,
|
|
352
|
+
# the dialect should indicate has_terminate=False
|
|
353
|
+
try:
|
|
354
|
+
meth = self._connection.stop
|
|
355
|
+
except AttributeError as ae:
|
|
356
|
+
raise NotImplementedError(
|
|
357
|
+
"terminate_force_close() not implemented by this DBAPI shim"
|
|
358
|
+
) from ae
|
|
359
|
+
else:
|
|
360
|
+
meth()
|
|
361
|
+
|
|
362
|
+
|
|
363
|
+
class AsyncAdaptFallback_aiosqlite_connection(AsyncAdapt_aiosqlite_connection):
|
|
364
|
+
__slots__ = ()
|
|
365
|
+
|
|
366
|
+
await_ = staticmethod(await_fallback)
|
|
367
|
+
|
|
368
|
+
|
|
369
|
+
class AsyncAdapt_aiosqlite_dbapi(AsyncAdapt_dbapi_module):
|
|
370
|
+
def __init__(self, aiosqlite: ModuleType, sqlite: ModuleType):
|
|
371
|
+
self.aiosqlite = aiosqlite
|
|
372
|
+
self.sqlite = sqlite
|
|
373
|
+
self.paramstyle = "qmark"
|
|
374
|
+
self.has_stop = hasattr(aiosqlite.Connection, "stop")
|
|
375
|
+
self._init_dbapi_attributes()
|
|
376
|
+
|
|
377
|
+
def _init_dbapi_attributes(self) -> None:
|
|
378
|
+
for name in (
|
|
379
|
+
"DatabaseError",
|
|
380
|
+
"Error",
|
|
381
|
+
"IntegrityError",
|
|
382
|
+
"NotSupportedError",
|
|
383
|
+
"OperationalError",
|
|
384
|
+
"ProgrammingError",
|
|
385
|
+
"sqlite_version",
|
|
386
|
+
"sqlite_version_info",
|
|
387
|
+
):
|
|
388
|
+
setattr(self, name, getattr(self.aiosqlite, name))
|
|
389
|
+
|
|
390
|
+
for name in ("PARSE_COLNAMES", "PARSE_DECLTYPES"):
|
|
391
|
+
setattr(self, name, getattr(self.sqlite, name))
|
|
392
|
+
|
|
393
|
+
for name in ("Binary",):
|
|
394
|
+
setattr(self, name, getattr(self.sqlite, name))
|
|
395
|
+
|
|
396
|
+
def connect(self, *arg: Any, **kw: Any) -> AsyncAdapt_aiosqlite_connection:
|
|
397
|
+
async_fallback = kw.pop("async_fallback", False)
|
|
398
|
+
|
|
399
|
+
creator_fn = kw.pop("async_creator_fn", None)
|
|
400
|
+
if creator_fn:
|
|
401
|
+
connection = creator_fn(*arg, **kw)
|
|
402
|
+
else:
|
|
403
|
+
connection = self.aiosqlite.connect(*arg, **kw)
|
|
404
|
+
|
|
405
|
+
# aiosqlite uses a Thread. you'll thank us later
|
|
406
|
+
if isinstance(connection, Thread):
|
|
407
|
+
# Connection itself was a thread in version prior to 0.22
|
|
408
|
+
connection.daemon = True
|
|
409
|
+
else:
|
|
410
|
+
# in 0.22+ instead it contains a thread.
|
|
411
|
+
connection._thread.daemon = True
|
|
412
|
+
|
|
413
|
+
if util.asbool(async_fallback):
|
|
414
|
+
return AsyncAdaptFallback_aiosqlite_connection(
|
|
415
|
+
self,
|
|
416
|
+
await_fallback(connection),
|
|
417
|
+
)
|
|
418
|
+
else:
|
|
419
|
+
return AsyncAdapt_aiosqlite_connection(
|
|
420
|
+
self,
|
|
421
|
+
await_only(connection),
|
|
422
|
+
)
|
|
423
|
+
|
|
424
|
+
|
|
425
|
+
class SQLiteExecutionContext_aiosqlite(SQLiteExecutionContext):
|
|
426
|
+
def create_server_side_cursor(self) -> DBAPICursor:
|
|
427
|
+
return self._dbapi_connection.cursor(server_side=True)
|
|
428
|
+
|
|
429
|
+
|
|
430
|
+
class SQLiteDialect_aiosqlite(SQLiteDialect_pysqlite):
|
|
431
|
+
driver = "aiosqlite"
|
|
432
|
+
supports_statement_cache = True
|
|
433
|
+
|
|
434
|
+
is_async = True
|
|
435
|
+
has_terminate = True
|
|
436
|
+
|
|
437
|
+
supports_server_side_cursors = True
|
|
438
|
+
|
|
439
|
+
execution_ctx_cls = SQLiteExecutionContext_aiosqlite
|
|
440
|
+
|
|
441
|
+
def __init__(self, **kwargs: Any):
|
|
442
|
+
super().__init__(**kwargs)
|
|
443
|
+
if self.dbapi and not self.dbapi.has_stop:
|
|
444
|
+
self.has_terminate = False
|
|
445
|
+
|
|
446
|
+
@classmethod
|
|
447
|
+
def import_dbapi(cls) -> AsyncAdapt_aiosqlite_dbapi:
|
|
448
|
+
return AsyncAdapt_aiosqlite_dbapi(
|
|
449
|
+
__import__("aiosqlite"), __import__("sqlite3")
|
|
450
|
+
)
|
|
451
|
+
|
|
452
|
+
@classmethod
|
|
453
|
+
def get_pool_class(cls, url: URL) -> type[pool.Pool]:
|
|
454
|
+
if cls._is_url_file_db(url):
|
|
455
|
+
return pool.AsyncAdaptedQueuePool
|
|
456
|
+
else:
|
|
457
|
+
return pool.StaticPool
|
|
458
|
+
|
|
459
|
+
def is_disconnect(
|
|
460
|
+
self,
|
|
461
|
+
e: DBAPIModule.Error,
|
|
462
|
+
connection: Optional[Union[PoolProxiedConnection, DBAPIConnection]],
|
|
463
|
+
cursor: Optional[DBAPICursor],
|
|
464
|
+
) -> bool:
|
|
465
|
+
self.dbapi = cast("DBAPIModule", self.dbapi)
|
|
466
|
+
if isinstance(
|
|
467
|
+
e, self.dbapi.OperationalError
|
|
468
|
+
) and "no active connection" in str(e):
|
|
469
|
+
return True
|
|
470
|
+
|
|
471
|
+
return super().is_disconnect(e, connection, cursor)
|
|
472
|
+
|
|
473
|
+
def get_driver_connection(
|
|
474
|
+
self, connection: DBAPIConnection
|
|
475
|
+
) -> AsyncIODBAPIConnection:
|
|
476
|
+
return connection._connection # type: ignore[no-any-return]
|
|
477
|
+
|
|
478
|
+
def do_terminate(self, dbapi_connection: DBAPIConnection) -> None:
|
|
479
|
+
dbapi_connection.terminate()
|
|
480
|
+
|
|
481
|
+
|
|
482
|
+
dialect = SQLiteDialect_aiosqlite
|