作者| Huang supreme,責(zé)任匯編|郭麗
頭部地圖|視覺(jué)中國(guó)下載的csdn
安裝PyMySQL庫(kù)
要使用Python操作MySQL數(shù)據(jù)庫(kù),必須先安裝pymysql庫(kù)。該庫(kù)安裝簡(jiǎn)單,pip install pyMySQL直接使用。如果這種方式仍然無(wú)法安裝,請(qǐng)使用下面的鏈接找到合適的安裝包并安裝,這就不詳細(xì)說(shuō)明了。(威廉莎士比亞,模板、安裝、安裝、安裝、安裝、安裝、安裝、安裝)
使用Python連接MySQL數(shù)據(jù)庫(kù)
1)六個(gè)常用的連接參數(shù)
參數(shù)host:mysql服務(wù)器所在的主機(jī)的ip;
參數(shù)user:用戶名
參數(shù)password:密碼
參數(shù)port:連接的mysql主機(jī)的端口,默認(rèn)是3306
參數(shù)db:連接的數(shù)據(jù)庫(kù)名
參數(shù)charset:當(dāng)讀取數(shù)據(jù)出現(xiàn)中文會(huì)亂碼的時(shí)候,需要我們?cè)O(shè)置一下編碼;我們使用python操作數(shù)據(jù)庫(kù)的時(shí)候,那么python就相當(dāng)于是client,我們是用這個(gè)client來(lái)操作mysql的server服務(wù)器,python3默認(rèn)采用的utf8字符集,我的mysql服務(wù)器默認(rèn)采用latin1字符集,因此mysql中創(chuàng)建的每張表,都是建表的時(shí)候加了utf8編碼的,因此這里設(shè)置的應(yīng)該就是connection連接器的編碼。
2)python連接mysql的語(yǔ)法
import pymysql
db=(host='localhost',user='root',password='123456',
port=3306,db='spiders',charset=' utf8')
最基本的參數(shù)是host,user,password和port,必須要有。剩下兩個(gè)參數(shù)根據(jù)你自己的情況決定是否使用。
host指的是mysql服務(wù)器安裝在哪里,由于我的mysql就是安裝在本機(jī)上,因此這里可以寫(xiě)localhost,我也可以寫(xiě)成主機(jī)名或者主機(jī)ip。
db指的是你要操作的是哪一個(gè)數(shù)據(jù)庫(kù),在進(jìn)行數(shù)據(jù)庫(kù)連接的時(shí)候,最好加上這個(gè)參數(shù)。
3)一個(gè)簡(jiǎn)單的熱身案例
# 導(dǎo)包
import pymysql
# 使用pymysql連接上mysql數(shù)據(jù)庫(kù)服務(wù)器,創(chuàng)建了一個(gè)數(shù)據(jù)庫(kù)對(duì)象;
db=(host='localhost',user='root', password='123456',
port=3306, db='huangwei', charset='utf8')
# 開(kāi)啟mysql的游標(biāo)功能,創(chuàng)建一個(gè)游標(biāo)對(duì)象;
cursor = db.cursor
# 要執(zhí)行的sql語(yǔ)句;
sql = "select * from student"
# 使用游標(biāo)對(duì)象執(zhí)行SQL語(yǔ)句;
cur(sql)
# 使用fetchone方法,獲取返回的結(jié)果,但是需要用變量保存返回結(jié)果;
data = cur
print(data)
# 斷開(kāi)數(shù)據(jù)庫(kù)的連接,釋放資源;
db.close
結(jié)果如下:
Cursor游標(biāo)對(duì)象的一些常用方法
1)cursor用來(lái)執(zhí)行命令的方法
execute(query, args):執(zhí)行單條sql語(yǔ)句,接收的參數(shù)為sql語(yǔ)句本身和使用的參數(shù)列表,返回值為受影響的行數(shù);
executemany(query, args):執(zhí)行單條sql語(yǔ)句,但是重復(fù)執(zhí)行參數(shù)列表里的參數(shù),返回值為受影響的行數(shù);
2)cursor用來(lái)接收返回值的方法
fetchone:返回一條結(jié)果行;
fetchmany(size):接收size條返回結(jié)果行。如果size的值大于返回的結(jié)果行的數(shù)量,則會(huì)返回cur條數(shù)據(jù);
fetchall:接收全部的返回結(jié)果行;
創(chuàng)建表(建)
import pymysql
db=(host='localhost',user='root', password='123456',
port=3306, db='huangwei', charset='utf8')
# 創(chuàng)建一個(gè)游標(biāo)對(duì)象;
cursor = db.cursor
# 建表語(yǔ)句;
sql = """create table person(
id int auto_increment primary key not ,
name varchar(10) not ,
age int not ) charset=utf8"""
# 執(zhí)行sql語(yǔ)句;
cur(sql)
# 斷開(kāi)數(shù)據(jù)庫(kù)的連接;
db.close
注意:你在mysql中sql語(yǔ)句怎么寫(xiě),在這里就怎么寫(xiě)。還有一個(gè)細(xì)節(jié)需要注意的是,在python中,將代碼進(jìn)行多次換行的時(shí)候,最好使用“三引號(hào)”。
查詢數(shù)據(jù)(查)
1)fetchone:一次獲取一條記錄
import pymysql
db = (host='localhost',user='root',db='huangwei',
password='123456',port=3306,charset='utf8')
cursor = db.cursor
cur('select count(*) from person')
aa = cur
print(aa)
# 注意這一句一定是在循環(huán)之外,不能放到循環(huán)里面。
# 想想這是為什么?
cur('select name,age from person')
for i in range(aa[0]):
a,b = cur
c = "我的名字叫{},今年{}歲".format(a,b)
display(c)
db.close
結(jié)果如下:
2)fetchall:一次獲取所有記錄
import pymysql
db = (host='localhost',user='root',db='huangwei',
password='123456',port=3306,charset='utf8')
cursor = db.cursor
cur('select name,age from person')
aa = cur
# print(aa)
for a,b in aa:
c = "我的名字叫{},今年{}歲".format(a,b)
display(c)
db.close
結(jié)果如下:
注:還有一個(gè)fetchmany方法,用于一次性獲取指定條數(shù)的記錄,請(qǐng)自行下去研究。
3)使用pandas中的read_sql方法,將提取到的數(shù)據(jù)直接轉(zhuǎn)化為DataFrame,進(jìn)行操作
import pymysql
import pandas as pd
db = (host='localhost',user='root',db='huangwei',
password='123456',port=3306,charset='utf8')
cursor = db.cursor
df1 = ("select * from student where ssex='男'",db)
display(df1)
df2 = ("select * from student where ssex='女'",db)
display(df2)
結(jié)果如下:
插入數(shù)據(jù)(增)
1)一次性插入一條數(shù)據(jù)
import pymysql
db=(host='localhost',user='root', password='123456',
port=3306, db='huangwei', charset='utf8')
cursor = db.cursor
# mysql中SQL語(yǔ)句怎么寫(xiě),這里就怎么寫(xiě);
name = "豬八戒"
age = 8000
sql = 'insert into person(name,age) values ("豬八戒",8000)'
try:
cur(sql)
db.commit
print("插入成功")
except:
print("插入失敗")
db.rollback
db.close
1.1)一次性插入一條數(shù)據(jù)
import pymysql
db=(host='localhost',user='root', password='123456',
port=3306, db='huangwei', charset='utf8')
cursor = db.cursor
# 插入數(shù)據(jù)
sql = 'insert into person(name,age) values(%s,%s)'
try:
cur(sql,('孫悟空',100000))
db.commit
print("插入成功")
except:
print("插入失敗")
db.rollback
db.close
2)一次性插入多條數(shù)據(jù)
import pymysql
db=(host='localhost',user='root', password='123456',
port=3306, db='huangwei', charset='utf8')
cursor = db.cursor
# 插入數(shù)據(jù)
sql = 'insert into person(name,age) values(%s,%s)'
# 注意:(('牛魔王',9000),('鐵扇公主',8000),('玉皇大帝',6000))也可以
# 小括號(hào)都可以換為中括號(hào)
datas = [('牛魔王',9000),('鐵扇公主',8000),('玉皇大帝',6000)]
try:
curmany(sql,datas)
db.commit
print("插入成功")
except:
print("插入失敗")
db.rollback
db.close
更新數(shù)據(jù)(改)
import pymysql
db=(host='localhost',user='root', password='123456',
port=3306, db='huangwei', charset='utf8')
cursor = db.cursor
# 更新數(shù)據(jù)
sql = 'update person set age=%s where name=%s'
try:
cur(sql,[90000,"玉皇大帝"])
db.commit
print("更新成功")
except:
print("更新失敗")
db.rollback
db.close
刪除數(shù)據(jù)(刪)
import pymysql
db=(host='localhost',user='root', password='123456',
port=3306, db='huangwei', charset='utf8')
cursor = db.cursor
# 刪除數(shù)據(jù)
sql = 'delete from person where age=8000'
try:
cur(sql)
db.commit
print("刪除成功")
except:
print("刪除失敗")
db.rollback
db.close
總結(jié)如下:
PyMySQL模塊是默認(rèn)開(kāi)啟MySQL的事務(wù)功能的,因此,進(jìn)行 "增"、 "刪"、"改"的時(shí)候,一定要使用db.commit提交事務(wù),否則就看不見(jiàn)所插入的數(shù)據(jù)。
進(jìn)行 "增"、"刪"、"改"的時(shí)候,一定要使用try…except…語(yǔ)句,因?yàn)槿f(wàn)一沒(méi)插入成功,其余代碼都無(wú)法執(zhí)行。當(dāng)語(yǔ)句執(zhí)行不成功,我們就db.rollback回滾到操作之前的狀態(tài);當(dāng)語(yǔ)句執(zhí)行成功,我們就db.commit提交事務(wù)。
作者:Huang supreme,個(gè)人博客地址:。
聲明:本文系作者投稿,版權(quán)歸其所有。
1.《.net如何連接mysql數(shù)據(jù)庫(kù)?終于找到答案了干貨!Python與MySQL數(shù)據(jù)庫(kù)的交互實(shí)戰(zhàn)》援引自互聯(lián)網(wǎng),旨在傳遞更多網(wǎng)絡(luò)信息知識(shí),僅代表作者本人觀點(diǎn),與本網(wǎng)站無(wú)關(guān),侵刪請(qǐng)聯(lián)系頁(yè)腳下方聯(lián)系方式。
2.《.net如何連接mysql數(shù)據(jù)庫(kù)?終于找到答案了干貨!Python與MySQL數(shù)據(jù)庫(kù)的交互實(shí)戰(zhàn)》僅供讀者參考,本網(wǎng)站未對(duì)該內(nèi)容進(jìn)行證實(shí),對(duì)其原創(chuàng)性、真實(shí)性、完整性、及時(shí)性不作任何保證。
3.文章轉(zhuǎn)載時(shí)請(qǐng)保留本站內(nèi)容來(lái)源地址,http://f99ss.com/gl/2105211.html