python資料庫操作 - PyMySQL入門

pythontab發表於2016-09-27

PyMySQL是Python中操作MySQL的模組,和之前使用的MySQLdb模組基本功能一致,PyMySQL的效能和MySQLdb幾乎相當,如果對效能要求

不是特別的強,使用PyMySQL將更加方便,PyMySQL是完全使用python編寫,避免了MySQLdb跨系統分別安裝的麻煩。

適用環境

python版本 >=2.6或3.3

mysql版本>=4.1


安裝

在命令列下執行命令:

pip install pymysql


手動安裝,請先下載。下載地址:https://github.com/PyMySQL/PyMySQL/tarball/pymysql-X.X。


其中的X.X是版本。


下載後解壓壓縮包。在命令列中進入解壓後的目錄,執行如下的指令:

python setup.py install

建議使用pip安裝, 可以自動解決包依賴問題,避免安裝中出現各種錯誤。


pymysql的基本操作如下:

#!/usr/bin/env python
#   --coding = utf-8
#   Author Allen Lee
import pymysql
#建立連結物件
conn = pymysql.connect(host='127.0.0.1', port=3306, user='root', passwd='123', db='Allen')
#建立遊標
cursor = conn.cursor()
#執行sql,更新單條資料,並返回受影響行數
effect_row = cursor.execute("update hosts set host = '1.1.1.2'")
#插入多條,並返回受影響的函式
effect_row = cursor.executemany("insert into hosts(host,color_id)values(%s,%s)",[("1.0.0.1",1,),("10.0.0.3",2)])
#獲取最新自增ID
new_id = cursor.lastrowid
#查詢資料
cursor.execute("select * from hosts")
#獲取一行
row_1 = cursor.fetchone()
#獲取多(3)行
row_2 = cursor.fetchmany(3)
#獲取所有
row_3 = cursor.fetchall()
#重設遊標型別為字典型別
cursor = conn.cursor(cursor=pymysql.cursors.DictCursor)
#提交,儲存新建或修改的資料
conn.commit()
#關閉遊標
cursor.close()
#關閉連線
conn.close()


相關文章