Python中使用MySQL數據庫時通常會依賴于PyMySQL包。PyMySQL是一個純Python實現的MySQL客戶端,旨在與Python 2和Python 3兼容并支持原始Python系統。
下面是安裝PyMySQL的步驟:
1. 在命令行中使用以下命令安裝PyMySQL:pip install pymysql
2. 在您的Python代碼中,導入PyMySQL:import pymysql
3. 使用PyMySQL連接到MySQL數據庫:conn = pymysql.connect( host='localhost', user='root', password='password', db='mydatabase' )
4. 在Python中執行MySQL查詢;例如:cursor = conn.cursor() cursor.execute("SELECT * FROM mytable") rows = cursor.fetchall()
5. 最后,關閉數據庫連接:conn.close()
完成以上步驟后,您現在具備了在Python中連接MySQL數據庫并執行查詢的基本知識。
上一篇mysql安裝mis