Django: Exception Value (2013, '2013: Lost Connection To MySQL Server During Query', None)
Recently I have upgraded Django from version 1.6.5 to 1.7.1 and mysql-connector-python from 1.x to 2.0.2 After upgrading, the Exception(2013) is raised most of the time I make a qu
Solution 1:
Ok. I did some digging around, and it looks like this is a known issue with Django 1.7 and version 2.0.2 of mysql-connector-python.
The bug is marked as "resolved" in version 2.0.3, but is not released yet.
EDIT: Downgrading to version 1.2.3 has been reported as a temporary solution by OP:
pip install -U --allow-external mysql-connector-python mysql-connector-python==1.2.3
Post a Comment for "Django: Exception Value (2013, '2013: Lost Connection To MySQL Server During Query', None)"