Python连接Mysql的两种驱动(工具)

一、mysql官网查

二、pymysql

(flask用该驱动连接时可能会有warning,无大碍)

例:'mysql+pymysql://root:root@localhost/myblog?charset=utf8'

三、mysql-connector

(nice)

例:'mysql+mysqlconnector://root:root@localhost/myblog?charset=utf8'

猜你喜欢

转载自blog.csdn.net/u011304490/article/details/80719853