Python3.5鏈接Mysql

因爲mysqldb目前僅支持到python3.4,因此這裏選擇pymysql。python

pymysql下載地址:mysql

https://pypi.python.org/packages/source/P/PyMySQL3/PyMySQL3-0.5.tar.gzsql

解壓以後,運行cmd,切換到PyMySQL3-0.5目錄數據庫

輸入python setup.py install,執行安裝測試

安裝完了,測試一下fetch

在py程序中引用 pymysqlurl

import pymysql

執行代碼,若是沒有報錯的話就表示 pymysql安裝成功了blog

因爲以前已經安裝了mysql數據庫,因此能夠真實測試一下數據庫鏈接get

上圖就是mysql數據庫中的一個測試數據庫表cmd

 

測試代碼以下:

import pymysql

conn = pymysql.connect(host="127.0.0.1",port=3306,user="test",passwd="12345",db="test",charset="utf8")

cur = conn.cursor()

sql = "select * from user"

cur.execute(sql)

rows = cur.fetchall()

#print(rows)

for dr in rows:
	print(dr)

運行結果以下:

相關文章
相關標籤/搜索