python3 mysql 數(shù)據(jù)庫連接 - pymysql 驅(qū)動
python3 使用 pymysql 驅(qū)動來連接 mysql 數(shù)據(jù)庫,并實現(xiàn)對 mysql 數(shù)據(jù)庫的增刪改查操作。在實際的項目中,我們通常會使用數(shù)據(jù)庫連接池 dbutils 管理數(shù)據(jù)庫連接。dbutils 是一個第三方庫,可以通過 pip3 安裝。
什么是 pymysql?
pymysql 是在 python3.x 版本中用于連接 mysql 服務(wù)器的一個庫,python2中則使用mysqldb。
pymysql 遵循 python 數(shù)據(jù)庫 api v2.0 規(guī)范,并包含了 pure-python mysql 客戶端庫。
pymysql 安裝
在使用 pymysql 之前,我們需要確保 pymysql 已安裝。
pymysql 下載地址:https://github.com/pymysql/pymysql。
如果還未安裝,我們可以使用以下命令安裝最新版的 pymysql:
$ pip3 install pymysql
如果你的系統(tǒng)不支持 pip 命令,可以使用以下方式安裝:
1、使用 git 命令下載安裝包安裝(你也可以手動下載):
$ git clone https://github.com/pymysql/pymysql $ cd pymysql/ $ python3 setup.py install
2、如果需要制定版本號,可以使用 curl 命令來安裝:
$ # x.x 為 pymysql 的版本號 $ curl -l https://github.com/pymysql/pymysql/tarball/pymysql-x.x | tar xz $ cd pymysql* $ python3 setup.py install $ # 現(xiàn)在你可以刪除 pymysql* 目錄
注意:請確保您有root權(quán)限來安裝上述模塊。
安裝的過程中可能會出現(xiàn)"importerror: no module named setuptools"的錯誤提示,意思是你沒有安裝setuptools,你可以訪問https://pypi.python.org/pypi/setuptools 找到各個系統(tǒng)的安裝方法。
linux 系統(tǒng)安裝范例:
$ wget https://bootstrap.pypa.io/ez_setup.py $ python3 ez_setup.py
數(shù)據(jù)庫連接
連接數(shù)據(jù)庫前,請先確認(rèn)以下事項:
- 您已經(jīng)創(chuàng)建了數(shù)據(jù)庫 testdb.
- 在testdb數(shù)據(jù)庫中您已經(jīng)創(chuàng)建了表 employee
- employee表字段為 first_name, last_name, age, sex 和 income。
- 連接數(shù)據(jù)庫testdb使用的用戶名為 "testuser" ,密碼為 "test123",你可以可以自己設(shè)定或者直接使用root用戶名及其密碼,mysql數(shù)據(jù)庫用戶授權(quán)請使用grant命令。
- 在你的機子上已經(jīng)安裝了 python mysqldb 模塊。
- 如果您對sql語句不熟悉,可以訪問我們的 sql基礎(chǔ)教程
python 操作 mysql 范例
以下范例鏈接 mysql 的 testdb 數(shù)據(jù)庫:
范例(python 3.0+)
- Python 變量類型
- Python for 循環(huán)語句
- Python pass 語句
- Python 日期和時間
- Python 正則表達式
- Python 操作 MySQL 數(shù)據(jù)庫
- Python XML 解析
- Python 數(shù)據(jù)結(jié)構(gòu)
- Python Deque
- Python 二叉樹
- Python 搜索樹
- Python 遞歸
- Python 樹遍歷算法
- Python 算法類
- Python3 元組(Tuple)
- Python3 正則表達式
- Python3 網(wǎng)絡(luò)編程
- Python3 多線程
- Python3 內(nèi)置函數(shù)
- Python MongoDB 數(shù)據(jù)庫連接 - PyMongo 驅(qū)動