python 连接Mysql数据库

时间:2021-12-24 14:27:42

1、下载http://dev.mysql.com/downloads/connector/python/

由于Python安装的是3.4,所以需要下载下面的mysql-connector-python:
python 连接Mysql数据库
下载成功后:
python 连接Mysql数据库
2、安装mysql-connector-python,你会发现安装的悄无声息,你感觉什么都木有发生,其实发生了很多事,我观察到的是python安装目录下面多了写东西:
python 连接Mysql数据库
mysql文件夹中多了东西,同时多了mysql_connecter_....-info
3、这样你就可以使用python连接Mysql数据库啦~~
测试代码如下:
import mysql.connector
config={'host':'127.0.0.1',#默认127.0.0.1
'user':'root',
'password':'',
'port':3306 ,#默认即为3306
'database':'school_data',
'charset':'utf8'#默认即为utf8
}
try:
cnn=mysql.connector.connect(**config);
print("连接成功");
cour=cnn.cursor();
value=('','asddd');
sql="""insert into dw (dwdm,dwmc) values (%s,%s)""";
cour.execute(sql,value);
#以下这一句很关键我少了这一句导致不报错,也插不进去数据,崩溃呀~~~
cnn.commit();
except mysql.connector.Error as e:
print('connect fails!{}'.format(e)) finally:
cour.close();
cnn.close();