i'm new to django an usind django 1.5 and python 3.3. Is there any way to install mysqlDB on python 3.3 (or)Is there any other method to connect them ?
-
See Can i use mysql on django(dev 1.6.x) with python3.x?Martijn Pieters– Martijn Pieters2013-03-05 18:01:31 +00:00Commented Mar 5, 2013 at 18:01
-
yes you can with github.com/davispuh/MySQL-for-Python-3 @MartijnPietersVishnu667– Vishnu6672013-04-02 20:42:11 +00:00Commented Apr 2, 2013 at 20:42
3 Answers
PyMySQL, a pure python client library without a dependency on the standard mysql client library, has Python 3 support via a build script.
Comments
Have you tried this? http://dev.mysql.com/downloads/connector/python/ The windows msi package for the mysql connector installed without any problem and seems to work nicely for a 1.0.10 (on windows 2008 R2 with python 3.3)
Comments
you can use https://github.com/PyMySQL/PyMySQL or http://dev.mysql.com/doc/connector-python/en/connector-python-versions.html
the second Connector does not support the old MySQL Server authentication methods, which means that MySQL versions prior to 4.1 will not work.