在mac上使用Python鏈接MySQL可以使用Python的MySQL Connector/Python,它是MySQL官方提供的Python驅動程序。 下面是鏈接MySQL的步驟。
首先,需要安裝MySQL Connector/Python:
pip install mysql-connector-python
然后,導入mysql.connector模塊:
import mysql.connector
接下來,可以使用以下代碼鏈接到MySQL數據庫:
mydb = mysql.connector.connect( host="localhost", user="root", password="password", database="mydatabase" )
上面的代碼將鏈接到名為“mydatabase”的數據庫。您可以將其替換為您的數據庫名稱。
現在,您可以使用“mydb”變量來執行MySQL命令。例如:
mycursor = mydb.cursor() mycursor.execute("SELECT * FROM customers") myresult = mycursor.fetchall() for x in myresult: print(x)
上面的代碼將使用游標執行一個選擇語句,并將結果存儲在“myresult”變量中。它然后打印結果。
總的來說,鏈接MySQL并在Python中執行MySQL命令非常簡單。只需安裝MySQL Connector/Python,導入mysql.connector模塊,然后使用mydb變量執行MySQL命令即可。