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