django-db-connection-pool
django-db-connection-pool copied to clipboard
Database connection pool component library for Django
Thanks @altairbow , I have same problem. I can not save correctly. the program looks ok without error but the table is not update when I check it on django...
**Describe the bug** There is some problems about dj_db_conn_pool migrations. Some fields are missing. **Environment** Python3.8.10 + django 3.2 + Oracle 18C **Traceback** My model is : class Tbl_Terminal(models.Model): id...
**Describe the bug** I have some scheduled tasks, get the connection operation database through the connection pool, and perform the task operation database again to report MySQL 2006 and MySQL2013...
I am seeing sporadic errors when trying to get a new connection on Google Cloud Run with PostgreSQL, and wondered what you think about a patch to re-try in case...
I'm using google's Cloud SQL for production DB and hitting connection limits. When I try ``` pip install "django-db-connection-pool[postgresql]" ``` I get the following ` Error: pg_config executable not found.`...
This is an interesting library as it seems easier to implement than pgbouncer. A section in the README explaining the difference between this and pgbouncer and potentially other libraries would...
**Describe the bug** I have moved from psycopg2[binary] to psycopg[binary] (Version 3.1.17 - Successor to psycopg2). But this package doesn't detects that. It has a fixed requirement of psycopg2 and...
Postgres backend works (except for postgis fields) but postgis backend does not. Tried to add **'server_version': '14.10'** to DATABASES['default'] in django settings but does not help portal-channels-1 | 2024-01-17 09:34:28,772...
Replace `sqlalchemy.dialects.mysql.base.MySQLDialect` with `sqlalchemy.dialects.mysql.mysqldb.MySQLDialect_mysqldb`. close: #61
**Describe the problem** * when a connection error has occurred (like "MySQL server gone away" error), throw `NotImplementedError`. * it seems that caused by using `MySQLDialect` class directly instead of...