pymysql安裝
阿新 • • 發佈:2017-12-18
python etc code odin sel conf 鏈接 mage alt
安裝python3之後 鏈接數據庫需要安裝pymysql
pymysql 下載地址 https://pypi.python.org/pypi/PyMySQL3/0.5 ,下載之後傳到linux虛擬機,或者直接在虛擬機裏面下載
之後執行解壓縮命令
tar -zxvf PyMySQL3-0.5.tar.gz
進入pymysql 文件夾內
cd PyMySQL3-0.5
安裝pymysql (一定要用root權限)
sudo python setup.py install
安裝完,成功
下面是測試代碼 (網上有很多)
#!/usr/bin/python
#coding=utf-8
import pymysql
# 打開數據庫連接
#db = pymysql.connect("192.168.106.102","root","123456","test" )
config = {
‘host‘:‘192.168.106.102‘,
‘port‘:3306,
‘user‘:‘root‘,
‘passwd‘:‘123456‘,
‘db‘:‘test‘,
‘charset‘:‘utf8‘,
}
# 連接數據庫
db = pymysql.connect(**config)
# 使用cursor()方法獲取操作遊標
cursor = db.cursor()
# 使用execute方法執行SQL語句
cursor.execute("SELECT VERSION()")
# 使用 fetchone() 方法獲取一條數據
data = cursor.fetchone()
print ("Database version : %s " % data)
# 關閉數據庫連接
db.close()
執行之後 顯示下圖 安裝成功
pymysql安裝