Python3.5串連Mysql

來源:互聯網
上載者:User

標籤:

由於mysqldb目前僅支援到python3.4,所以這裡選擇pymysql。

pymysql:

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

解壓之後,運行cmd,切換到PyMySQL3-0.5目錄

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

安裝完了,測試一下

在py程式中引用 pymysql

import pymysql

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

由於之前已經安裝了mysql資料庫,所以可以真實測試一下資料庫連接

就是mysql資料庫中的一個測試資料庫表

 

測試代碼如下:

import pymysqlconn = 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)

運行結果如下:

 

Python3.5串連Mysql

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.