1. 程式人生 > 資料庫 >python3連線MySQL8.0的兩種方式

python3連線MySQL8.0的兩種方式

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',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、獲取資料庫資料:

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) #執行SQL命令
for a in mycursor:    #展示請求資料
  print(a)
mycursor.close()     #指標必須關閉
myconn.close()      #連線必須關閉

4、插入、更改和刪除資料

跟上面一樣的方法執行插入、更改和資料命令,這裡有一點區別,execute語句後必須呼叫連線的.commit()方法確認執行。

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

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

總結

以上所述是小編給大家介紹的python3連線MySQL8.0的兩種方式,希望對大家有所幫助,也非常感謝大家對我們網站的支援!