-
* **asyncpg version**: 0.14.0
* **PostgreSQL version**: 9.6.6
* **Do you use a PostgreSQL SaaS? If so, which? Can you reproduce
the issue with a local PostgreSQL install?**: I can't reprodu…
-
In the Tortoise ORM documentation, the default connect_timeout is set to None.
See: https://tortoise.github.io/databases.html#id5
What is the actual default timeout before it cancels the request…
-
According to the [documentation](https://magicstack.github.io/asyncpg/current/api/index.html#connection-pools) the `setup` callback is where you should do stuff like add log listeners to the connectio…
-
**Describe the bug**
Execute raw sql insert, result is incorrect.
**To Reproduce**
```
from tortoise import Tortoise, fields, run_async
from tortoise.models import Model
class Event(Model)…
-
## For consideration: abstract and more semantically meaningful object-centric exceptions
This may be a matter of opinion, but I feel that one of the key features of an ORM is typically to abstract…
-
* **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 version…
-
Hey there guys, our database password contains a `#` character and databases doesn't seem to like it 😄
```
In [25]: url = DatabaseURL("postgresql://username:password%23123@localhost/name")
In …
-
So I have this two tables in postgres:
```python
from piccolo.columns import *
from piccolo.table import Table
class EmployeeRole(Table):
name = Varchar()
class Employee(Table):
nam…
-
Hi,
I'm trying out `databases` with FastAPI.
I've set up the database connection management on startup and shutdown, just like how it's shown in the documentation.
I'm also saving initialized glo…
-
I have a few interrelated questions. Some might even be blasphemous for lack of in-depth knowledge of the wire protocol on my part.
1. Is there a way to delay decoding results until actually lookin…