asyncpg icon indicating copy to clipboard operation
asyncpg copied to clipboard

A fast PostgreSQL Database Client Library for Python/asyncio.

Results 213 asyncpg issues
Sort by recently updated
recently updated
newest added

* **asyncpg version**: 0.28 * **PostgreSQL version**: 15 * **Do you use a PostgreSQL SaaS? If so, which? Can you reproduce the issue with a local PostgreSQL install?**: Local version...

asyncpg supports an explicit server_options=... dict connection method parameter, but does not seem to populate its value from the PGOPTIONS environment variable. This is a feature request for it to...

* **asyncpg version**: 0.27.0 * **PostgreSQL version**: PostgreSQL 15.2 (Debian 15.2-1.pgdg110+1) on x86_64-pc-linux-gnu, compiled by gcc (Debian 10.2.1-6) 10.2.1 20210110, 64-bit * **Do you use a PostgreSQL SaaS? If so,...

* **asyncpg version**: 0.27 * **PostgreSQL version**: 14 * **Do you use a PostgreSQL SaaS? If so, which? Can you reproduce the issue with a local PostgreSQL install?**: no *...

--- * **asyncpg version**: 0.27.0 * **PostgreSQL version**: 12 * **Python version**: 3.8 * **Platform**: Ubuntu 22 * **Do you use pgbouncer?**: no * **Did you install asyncpg with pip?**:...

```python3 await conn.executemany( """ UPDATE user SET login=$2, name=$3, age=$4, sex=$5 WHERE id=$1 """, users, ) ``` ```python3 await conn.executemany( """ UPDATE user SET login=actual_user.login, name=actual_user.name, age=actual_user.age, sex=actual_user.sex FROM (VALUES...

Like this: "SELECT company FROM company WHERE approved=%(approved)s" not this : SELECT company FROM company WHERE approved = ${approved} not this : SELECT company FROM company WHERE approved = $1...

I was expecting asyncpg.connect() to have a concrete type, but I'm new to python and I may be overlooking something obvious. Thank you.

* **asyncpg version**: 0.26.0 * **PostgreSQL version**: 12.0 * **Do you use a PostgreSQL SaaS? If so, which? Can you reproduce : NO, from pg docker the issue with a...

* **asyncpg version**: 0.27.0 * **PostgreSQL version**: 15.1 * **Do you use a PostgreSQL SaaS? If so, which? Can you reproduce the issue with a local PostgreSQL install?**: * **Python...