資料內(nèi)容:
安裝依賴庫
使用 pip 來安裝 mysql-connector-python,這是一個用于與 MySQL 數(shù)據(jù)庫交互的 Python 驅(qū)
動程序。
bash
pip install mysql-connector-python
連接數(shù)據(jù)庫
python
import mysql.connector
# 連接到 MySQL 數(shù)據(jù)庫
mydb = mysql.connector.connect(
host="localhost", # 數(shù)據(jù)庫主機(jī)地址
user="yourusername", # 數(shù)據(jù)庫用戶名
password="yourpassword", # 數(shù)據(jù)庫密碼
database="yourdatabase" # 數(shù)據(jù)庫名稱
)
執(zhí)行 SQL 查詢
# 創(chuàng)建一個游標(biāo)對象,通過它我們可以執(zhí)行 SQL 命令
mycursor = mydb.cursor()
# 執(zhí)行 SQL 查詢語句
mycursor.execute("SELECT * FROM yourtable")
# 獲取查詢結(jié)果并打印出來
results = mycursor.fetchall()
for x in results:
print(x)
插入數(shù)據(jù)
python
# 創(chuàng)建一個新的記錄
mycursor.execute("INSERT INTO yourtable (column1, column2) VALUES (%s, %s)", ("value1",