Bug with Mysql connection (since 2.2a1).
I’ve recently started one more project based on Django. The other day I decided to change the DB from mySQLlite to MySQL and, to my surprise, the configuration that I had used in my previous project (Django 2.1.7) was not working. I’ve spent a lot of time on figuring out what was going wrong with it on my MacBook, and it turned out that it has not been possible to use MySQL connection since Django 2.2a1. In order to connect, I’ve always used PyMySQL, and it worked with:
import pymysql
pymysql.install_as_MySQLdb()
Now, with versions starting from 2.2a1 to 2.2.4, it throws an error and says that I haven’t installed some packages whereas I have done it. Again, this bug can be easily noticed just by installing a fresh Django project + setting a Mysql DB connection on Mac + switching between versions.
It has nothing to do with PyMySQL as its version hasn't changed.
Change History
(4)
Description: |
modified (diff)
|
Component: |
Uncategorized → Database layer (models, ORM)
|
Summary: |
Bug with Mysql connection → Bug with Mysql connection (since 2.2a1)
|
Resolution: |
→ duplicate
|
Status: |
new → closed
|
Summary: |
Bug with Mysql connection (since 2.2a1) → Bug with Mysql connection (since 2.2a1).
|
PyMySQL
is not officially supported and it's probably a duplicate of #30380. You can confirm this by applying patches 994a00eb70969e4fd8f7a30a95122e2f0411ff48 and a41b09266dcdd01036d59d76fe926fe0386aaade to your local installation.