溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

python3連接MySQL8.0的兩種方式

發(fā)布時間:2020-09-19 13:15:14 來源:腳本之家 閱讀:334 作者:兔豬合家歡 欄目:開發(fā)技術

1、下載MySQL官方的mysql-connector-python-8.0.17-py3.7-windows-x86-64bit.msi,直接點擊安裝;

2、安裝完畢后直接可以導入mysql.connnector模塊

連接方式一:

import mysql.connector 
cnx = mysql.connector.connect(user='scott', password='password', host='127.0.0.1', database='employees')
cnx.close()

連接方式二:

from mysql.connector import (connection) 
cnx = connection.MySQLConnection(user='scott', password='password', host='127.0.0.1', database='employees') 
cnx.close()

用try~except獲取錯誤代碼:

import mysql.connector 
from mysql.connector import errorcode 
try: 
 cnx = mysql.connector.connect(user='scott', database='employ') 
except mysql.connector.Error as err: 
 if err.errno == errorcode.ER_ACCESS_DENIED_ERROR: 
 print("Something is wrong with your user name or password") 
 elif err.errno == errorcode.ER_BAD_DB_ERROR: 
 print("Database does not exist") 
 else: 
 print(err) 
else: 
cnx.close()

3、獲取數(shù)據(jù)庫數(shù)據(jù):

import mysql.connector
myconn=mysql.connector.connect(host="localhost",user="lucy",passwd="123455",database="holiday")
mycursor=myconn.cursor()
my_cmd_sql="select * from birthday"
a=mycursor.execute(my_cmd_sql) #執(zhí)行SQL命令
for a in mycursor:    #展示請求數(shù)據(jù)
  print(a)
mycursor.close()     #指針必須關閉
myconn.close()      #連接必須關閉

4、插入、更改和刪除數(shù)據(jù)

跟上面一樣的方法執(zhí)行插入、更改和數(shù)據(jù)命令,這里有一點區(qū)別,execute語句后必須調(diào)用連接的.commit()方法確認執(zhí)行。

另外:指針一定要關閉,否則容易引起

mysql 2014 error (2014) Commands out of sync; You can't run this command now

總結

以上所述是小編給大家介紹的python3連接MySQL8.0的兩種方式,希望對大家有所幫助,也非常感謝大家對億速云網(wǎng)站的支持!

向AI問一下細節(jié)

免責聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權內(nèi)容。

AI