1. 程式人生 > >本地Python連線伺服器中的Mysql資料庫

本地Python連線伺服器中的Mysql資料庫

1、Python中安裝mysql驅動

1.1、Python下安裝mysql驅動:

pip installmysql-connector-python --allow-external mysql-connector-python

如果上面的命令安裝失敗,可以試試另一個驅動:

pip installmysql-connector

1.2、anaconda下安裝mysql驅動:

conda installmysql-connector-python

 

2、連線到伺服器端的mysql資料庫

僅以查詢資料庫中某一資料表為例,

# 匯入MySQL驅動
import mysql.connector
# 連線mysql,括號內是伺服器地址, 埠號, 使用者名稱,密碼,存放資料的資料庫
conn = mysql.connector.connect( host='#', port='#', user='#', password='#', database='#')
cursor = conn.cursor(buffered=True) # Locate the Cursor, all that was required was for buffered to be set to true
#獲得表中有多少條資料
sqlcom="select * from china_sites_20140513" # SQL command
aa=cursor.execute(sqlcom) # Execute the command
print(aa)
#查詢表中資料,並以每行一個元祖列印
rows = cursor.fetchall() #使用 fetchall 函式,將結果集(多維元組)存入 rows 裡面
#依次遍歷結果集,發現每個元素,就是表中的一條記錄,用一個元組來顯示
for a in rows:
    print(a)