使用Connector / Python连接MySQL/查询数据
生活随笔
收集整理的這篇文章主要介紹了
使用Connector / Python连接MySQL/查询数据
小編覺得挺不錯的,現(xiàn)在分享給大家,幫大家做個參考.
使用Connector / Python連接MySQL
connect()構(gòu)造函數(shù)創(chuàng)建到MySQL服務(wù)器的連接并返回一個 MySQLConnection對象
在python中有以下幾種方法可以連接到MySQL數(shù)據(jù)庫:
- 1.使用connect()構(gòu)造函數(shù)
- 使用connection.MySQLConnection() 類創(chuàng)建連接對象
- 在字典中定義連接參數(shù)并使用 **運算符
處理鏈接錯誤使用try語句并使用error.Error異常捕獲所有錯誤
import mysql.connector from mysql.connector import errorcodetry:cnx = mysql.connector.connect(user='scott',database='employ') except mysql.connector.Error as err:if err.errno == errorcode.ER_ACCESS_DENIED_ERROR:print("Something is wrong with your user name or password")elif err.errno == errorcode.ER_BAD_DB_ERROR:print("Database does not exist")else:print(err) else:cnx.close()2.使用Connector / Python查詢數(shù)據(jù)
import datetime import mysql.connectorcnx = mysql.connector.connect(user='scott', database='employees') cursor = cnx.cursor()query = ("SELECT first_name, last_name, hire_date FROM employees ""WHERE hire_date BETWEEN %s AND %s")hire_start = datetime.date(1999, 1, 1) hire_end = datetime.date(1999, 12, 31)cursor.execute(query, (hire_start, hire_end))for (first_name, last_name, hire_date) in cursor:print("{}, {} was hired on {:%d %b %Y}".format(last_name, first_name, hire_date))cursor.close() cnx.close()參考鏈接:
https://dev.mysql.com/doc/connector-python/en/connector-python-examples.html
轉(zhuǎn)載于:https://www.cnblogs.com/yuanchao-blog/p/10639132.html
總結(jié)
以上是生活随笔為你收集整理的使用Connector / Python连接MySQL/查询数据的全部內(nèi)容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: 工银e支付怎么开通?开通失败怎么办?
- 下一篇: 工银电子密码器是什么?怎么激活?