Problem running manage.py sync db in django 1.3 was solved using pymysql instead of mysqldb. I also replaced it in django. I followed this tutorial: http://web-eng-help.blogspot.com/2010/09/install-mysql-5-for-python-26-and.html

I want to know that what actually is pymysql and how is it different than mysqldb? I am using it on local host and will then upload it on some hosting.

If it don't matter much on local host then I think it is fine to use this on localhost and on hosting whatever they provide? But I have changed "MySQLdb" in base.py and introspection.py to "pymysql", so will I need to upload it on server after changing these files? Or as it is django's files so since django will be uploaded there already so it don't matters much ?

Please tell whatever you know, as this is my first ride on django.

thanks in advance to all

link|improve this question

79% accept rate
feedback

2 Answers

up vote 2 down vote accepted

Both pmysql and MySQLdb are both database connectors for Python, libraries to enable Python programs to talk to a MySQL server.

You would normally never upload core Django files when deploying an app. If Django is working fine on your deployment server, you definitely don't need to change anything there. The DB driver is a step or two below the ORM even, and certainly none of the code you have written depends on which of these is in use.

link|improve this answer
feedback

Your first point:

According to pymysql wiki page:

MySQLdb, is a C extension module that has a reputation of being difficult to compile, especially if you're on a Mac. Additionally, end-users need to wait for new binaries to be compiled for each new release of Python, and MySQLdb will never run on Jython, IronPython, or PyPy (without something like cpyext or IronClad). We also maintain 100% compatibility between Python 2 and Python 3, so all advancements made on the 2.x trunk will be immediately available on Python 3.

Your second point:

If django is working fine on your localhost, then it should be fine on your development.

link|improve this answer
yah but my point is that while I have changed MySQLdb to pymysql in those two files told above that are of django, so will it create problem? Or django is already there on webhostings ? Or pymysql is there? – Hafiz Aug 29 '11 at 0:43
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.