小男孩‘自慰网亚洲一区二区,亚洲一级在线播放毛片,亚洲中文字幕av每天更新,黄aⅴ永久免费无码,91成人午夜在线精品,色网站免费在线观看,亚洲欧洲wwwww在线观看

分享

python對(duì)MySQL數(shù)據(jù)庫(kù)的增刪改查

 copy_left 2020-05-17

PyMySQL 是在 Python3.x 版本中用于連接 MySQL 服務(wù)器的一個(gè)庫(kù),Python2中則使用mysqldb。

1.PyMySQL的安裝

PS G:\book> pip install pymysql

Collecting pymysql

Downloading https://files./packages/ed/39/15045ae46f2a123019aa968dfcba0396c161c20f855f11dea6796bcaae95/PyMySQL-0.9.3-py2.py3-none-any.whl (47kB)

100% |████████████████████████████████| 51kB 17kB/s

Installing collected packages: pymysql

Successfully installed pymysql-0.9.3

2.使用python操作數(shù)據(jù)庫(kù)的流程

python對(duì)MySQL數(shù)據(jù)庫(kù)的增刪改查

3.各個(gè)對(duì)象的介紹

導(dǎo)入import pymysql后,使用pymysql.connect函數(shù)就可以連接數(shù)據(jù)庫(kù)了。

pymysql.connect()參數(shù)說(shuō)明:

python對(duì)MySQL數(shù)據(jù)庫(kù)的增刪改查

conn=pymysql.connect(host='127.0.0.1',user='root',passwd='123456',db='test',port=3306)

還可以簡(jiǎn)寫(xiě)為這樣:

conn=pymysql.connect('127.0.0.1','root','123456','test',3306)

打開(kāi)數(shù)據(jù)庫(kù)鏈接后,返回一個(gè)connection對(duì)象。

connection對(duì)象支持的方法,如下表所示:

python對(duì)MySQL數(shù)據(jù)庫(kù)的增刪改查

通過(guò)connection對(duì)象的cursor方法,返回一個(gè)cursor游標(biāo)對(duì)象,

cursor對(duì)象支持的方法,如下表所示:

python對(duì)MySQL數(shù)據(jù)庫(kù)的增刪改查

4. 連接數(shù)據(jù)庫(kù)

import pymysql

#數(shù)據(jù)庫(kù)連接,返回?cái)?shù)據(jù)庫(kù)連接對(duì)象

conn=pymysql.connect('127.0.0.1','root','123456','tt',3306)

#conn=pymysql.connect('127.0.0.1','root','123456','tt',3306)

cur=conn.cursor()

5.創(chuàng)建數(shù)據(jù)表

sql='''

create table test(id int not null auto_increment primary key,username varchar(50),password varchar(50))

'''

cur.execute(sql)

注意:這段代碼是創(chuàng)建一個(gè)表,一般可以通過(guò)可視化界面進(jìn)行創(chuàng)建。

6. 插入數(shù)據(jù)

插入test表中數(shù)據(jù),該表有兩個(gè)字段,可以使用占位符%s,可以有效避免sql注入問(wèn)題。參數(shù)通過(guò)元組插入。

insertsql='''

insert into test(username,password) values (%s,%s)

'''

cur.execute(insertsql,('admin','123456'))

還可以executemany實(shí)現(xiàn)批量插入,比起循環(huán)插入效率要高。

insertmanysql='''

insert into test(username,password) values (%s,%s)

'''

cur.executemany(insertmanysql,[('zhangsan','123456'),('master','123456')])

上述方式無(wú)論插入單條數(shù)據(jù)還是多條數(shù)據(jù)都不會(huì)立即生效,需要進(jìn)行事務(wù)提交。

conn.commit()

如果出現(xiàn)異常,可以使用事務(wù)回滾操作

conn.rollback()

7.查詢數(shù)據(jù)

游標(biāo)對(duì)象提供了fetchall方法,獲取全部數(shù)據(jù)。返回一個(gè)元組。

Fetchone方法,獲取其中的一個(gè)結(jié)果,返回一個(gè)元組。

cur.execute('select * from test')

rs=cur.fetchall()

for line in rs:

print(line)

<class 'tuple'>

(1, 'admin', '123456')

(2, 'zhangsan', '123456')

(3, 'master', '123456')

cur.execute('select * from test')

rs=cur.fetchone()

print(rs)

<class 'tuple'>

(1, 'admin', '123456')

8.更新數(shù)據(jù)

import pymysql

#數(shù)據(jù)庫(kù)連接,返回?cái)?shù)據(jù)庫(kù)連接對(duì)象

conn=pymysql.connect('127.0.0.1','root','123456','etc',3306)

cur=conn.cursor()

try:

updatesql='update test set username=%s where id=%s'

cur.execute(updatesql,('manager',1))

conn.commit()

cur.execute('select * from test')

rs=cur.fetchall()

for line in rs:

print(line)

except:

conn.rollback()

conn.close()

(1, 'manager', '123456')

(2, 'zhangsan', '123456')

(3, 'master', '123456')

9.刪除數(shù)據(jù)

import pymysql

#數(shù)據(jù)庫(kù)連接,返回?cái)?shù)據(jù)庫(kù)連接對(duì)象

conn=pymysql.connect('127.0.0.1','root','123456','tt',3306)

cur=conn.cursor()

try:

delsql='delete from test where id=%s'

cur.execute(delsql,(3,))

conn.commit()

cur.execute('select * from test')

rs=cur.fetchall()

print(rs)

except:

print('發(fā)生了錯(cuò)誤')

conn.rollback()

conn.close()

((1, 'manager', '123456'), (2, 'zhangsan', '123456'))

可以看到,id=3的數(shù)據(jù)已經(jīng)被刪除。

python訪問(wèn)數(shù)據(jù)庫(kù)基本類似,非常簡(jiǎn)單,大家動(dòng)手做一個(gè)屬于你的數(shù)據(jù)庫(kù)應(yīng)用吧。

    本站是提供個(gè)人知識(shí)管理的網(wǎng)絡(luò)存儲(chǔ)空間,所有內(nèi)容均由用戶發(fā)布,不代表本站觀點(diǎn)。請(qǐng)注意甄別內(nèi)容中的聯(lián)系方式、誘導(dǎo)購(gòu)買(mǎi)等信息,謹(jǐn)防詐騙。如發(fā)現(xiàn)有害或侵權(quán)內(nèi)容,請(qǐng)點(diǎn)擊一鍵舉報(bào)。
    轉(zhuǎn)藏 分享 獻(xiàn)花(0

    0條評(píng)論

    發(fā)表

    請(qǐng)遵守用戶 評(píng)論公約

    類似文章 更多