sqlalchemy_aio icon indicating copy to clipboard operation
sqlalchemy_aio copied to clipboard

Asyncio strategy for SQLAlchemy.

Results 9 sqlalchemy_aio issues
Sort by recently updated
recently updated
newest added

Hi! Today when we installed query-exporter on our system, it broke. Traced the problem to sqlalchemy_aio 0.17.0; downgrading to 0.16.0 made it work again. Details (copied from https://github.com/albertodonato/query-exporter/issues/105 ) **Describe...

Hello, Just wondering if you've heard of the awesome library https://anyio.readthedocs.io/en/stable/ ? It could replace the dual asyncio/trio implementations with one. I'd consider contributing if this is a desired change.

Trying to run an import process via sqlalchemy_aio and python await/async. When running `self.session.query(City).filter_by(name='x').first()`, the code fails with the AttributeError exception. It might be as simple as this part of...

I'm reading a very large result set from MySQL and trying to interleave calling `fetchmany()` chunks from multiple connections' streams using async. This works with the default cursor settings, but...

Would be great to have some typing annotations for use with mypy, that complements the sqlalchemy-stubs package.

While testing, I found a curious behaviour: ` result = await conn.execute(data.select().where(data.c.owner == ctx.author.id)) ` This works properly if there is data, both when data is found and when not...

...if I intentionally leave AsyncConnection **un-closed**. Also this leads to connection pool overflow for some reason. Is it possible to handle garbage collection for AsyncConnection to close underlying SQLAlchemy connection...

🙋 Hello, dear [@RazerM ](https://github.com/RazerM). Getting `OperationalError` while doing: ``` c = await myEngine.connect() # myEngine is AsyncioEngine await c.execute(...) await c.close() ``` Couldn't find anything like `NormalEngine.dispose()`. So I...

From the description of the project, it seems that curio is not supported. Similar to trio, I think curio is also a great async lib that is worth supporting. Is...