python+MySQL架構

來源:互聯網
上載者:User

標籤:htm   close   nal   use   int   utf8   html   span   客戶   

 1 #! usr/bin/python 2 #coding=utf-8 3  4 # Python + 連接器 構成一個用戶端 5 from pymysql import connect 6  7 # 串連選項 8 db_config = { 9     ‘host‘: ‘192.168.1.105‘,10     ‘port‘: 3306,11     ‘user‘: ‘wendy‘,12     ‘passwd‘: ‘1234567890‘,13     ‘db‘: ‘testDB2‘,14     ‘charset‘: ‘utf8‘,15 }16 17 # 串連到資料庫18 connection = connect(**db_config)19 20 try:21     with connection.cursor() as cursor:22         sql = "SELECT * FROM `testDB2`.`users`"23         cursor.execute(sql)24         for i in cursor:25             print(i)26 finally:27     connection.close()

參考網站:http://pymysql.readthedocs.io/en/latest/user/examples.html

python+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.