安装
wget http://tenet.dl.sourceforge.net/project/mysql-python/mysql-python-test/1.2.4b4/MySQL-python-1.2.4b4.tar.gztar zxvf MySQL-python-1.2.4b4.tar.gzsudo apt-get install python-setuptoolssudo apt-get install libmysqld-devsudo apt-get install python-devpython setup.py buildsudo python setup.py install
使用
import MySQLdbconn = MySQLdb.connect(host="localhost", port=3306, user="root", passwd="root", db="test", charset="utf8")cursor = conn.cursor()cursor.execute("show tables")cursor.fetchone()cursor.fetchall()