发布时间:2018-05-23 18:38:38
点击(此处)折叠或打开import MySQLdbconn = MySQLdb.connect(host='localhost',user='root',passwd='123456')cursor = conn.cursor()cursor.execute('show databases')cursor.execute('create database min')use = 'use m.........【阅读全文】
发布时间:2018-05-22 16:29:22
点击(此处)折叠或打开#安装mysql-server#apt-get install mysql-server#安装python-mysqldb#apt-get install python-mysqldb#python Python 2.7.12 (default, Dec 4 2017, 14:50:18)[GCC 5.4.0 2.........【阅读全文】
发布时间:2018-05-21 23:10:52
由于使用pip安装MySQL-python,可能导致的问题是本地python是64bit,pip安装的MySQL-python是32bit。https://pan.baidu.com/s/1jBv_mE1nWwhUDka2xZ7V-Q报错如下:C:\Users\SongHyun>pythonPython 2.7.11 (v2.7.11:6d1b6a68f775, Dec 5 2015, 20:40:30) [MSC v.1500 64 bit (.........【阅读全文】