1. 程式人生 > >Python3安裝Mysql驅動包PyMySQL

Python3安裝Mysql驅動包PyMySQL

1、下載PyMySQL包

登入https://pypi.org/網站,輸入pymysql,搜尋PyMySQL包,如圖:

搜尋後結果如圖:

 

點選搜尋結果PyMySQL 0.9.2後,如圖:

然後點選Download files,頁面如圖:

 點選whl格式的檔案下載。

 

2、安裝PyMySQL包

在Python安裝目錄下,新建一個whl目錄(以後可以專門用來放置whl格式的python包),將剛下載的whl檔案放入該目錄下,如圖:

進入Python安裝目錄下的Scripts下,按下Shift後,右鍵選擇【在此處開啟命令視窗】,彈出命令視窗,並在視窗中輸入安裝命令,如圖:

 

注:可以直接在命令視窗中執行pip install pymysql來安裝。

 

3、使用PyMySQL包連線資料庫

MySQL具體如下:

 下面我們通過Python程式碼,連線springcloud資料庫,查詢organizations表中的name欄位,Python程式碼如下:

import pymysql

# 建立連線
conn = pymysql.connect(host="localhost",
                       port=3306,
                       user="root",
                       passwd="root",
                       db="springcloud")
# 建立遊標
cursor = conn.cursor()
# 執行mysql語句
cursor.execute("select name from organizations")

# 獲取所有的執行結果
res = cursor.fetchall()
# 列印獲取到的執行結果
print(res)

# 提交要執行的mysql指令
conn.commit()
# 關閉遊標
cursor.close()
# 關閉連線
conn.close()

 程式執行結果:

(('HR-PowerSuite',), ('customer-crm-co',))

Process finished with exit code 0