replaced third-party library python-mysql with python pymysql, http://code.google.com/p/pymysql/ (MIT license)

This commit is contained in:
Bernardo Damele
2011-06-22 13:31:07 +00:00
parent e76cb19e35
commit 1cb12ea659
5 changed files with 15 additions and 15 deletions

View File

@@ -32,7 +32,7 @@ def checkDependencies():
warnMsg += "Download from %s" % data[2]
logger.warn(warnMsg)
elif dbmsName == DBMS.MYSQL:
import MySQLdb
import pymysql
elif dbmsName == DBMS.PGSQL:
import psycopg2
elif dbmsName == DBMS.ORACLE: