python中PyMySQL有什么用
1、說明
PyMySQL是純Python實現(xiàn)的驅(qū)動,速度上比不上MySQLdb,特點可能就是它的安裝方式?jīng)]那么繁瑣,同時也兼容MySQL-python。
pipinstallPyMySQL
#為了兼容mysqldb,只需要加入
pymysql.install_as_MySQLdb()
2、實例
importpymysql
conn=pymysql.connect(host='127.0.0.1',user='root',passwd="xxx",db='mysql')
cur=conn.cursor()
cur.execute("SELECTHost,UserFROMuser")
forrincur:
print(r)
cur.close()
conn.close()
以上就是python中PyMySQL的作用,希望對大家有所幫助。更多Python學習教程請關注IT培訓機構(gòu):千鋒教育。