亚洲精品久久久中文字幕-亚洲精品久久片久久-亚洲精品久久青草-亚洲精品久久婷婷爱久久婷婷-亚洲精品久久午夜香蕉

您的位置:首頁(yè)/技術(shù)文章
文章詳情頁(yè)

Python使用sqlite3模塊內(nèi)置數(shù)據(jù)庫(kù)

瀏覽:28日期:2022-07-26 10:26:11

1、python內(nèi)置的sqlite3模塊,創(chuàng)建數(shù)據(jù)庫(kù)中的表,并向表中插入數(shù)據(jù),從表中取出所有行,以及輸出行的數(shù)量。

#!/usr/bin/env python3#創(chuàng)建SQLite3內(nèi)存數(shù)據(jù)庫(kù),并創(chuàng)建帶有四個(gè)屬性的sales表#sqlite3模塊,提供了一個(gè)輕量級(jí)的基于磁盤(pán)的數(shù)據(jù)庫(kù),不需要獨(dú)立的服務(wù)器進(jìn)程import sqlite3#使用‘:memory:’在內(nèi)存中創(chuàng)建了一個(gè)數(shù)據(jù)庫(kù),創(chuàng)建了連接對(duì)象con來(lái)代表數(shù)據(jù)庫(kù)con = sqlite3.connect(’:memory:’)#創(chuàng)建表名為sales的表,將這個(gè)字符串賦值給queryquery = '''CREATE TABLE sales (customer VARCHAR(20), product VARCHAR(40), amount FLOAT, date DATE);'''#使用連接對(duì)象的execute()方法執(zhí)行query中的SQL命令con.execute(query)#使用連接對(duì)象的commit()方法將修改提交(保存)到數(shù)據(jù)庫(kù)con.commit()#向表中插入幾行數(shù)據(jù)data = [(’Richard Lucas’,’Notepad’,2.50,’2019-01-02’), (’Jenny Kim’,’Binder’,4.15,’2019-01-05’), (’Svetlana Crow’,’Printer’,155.75,’2019-02-03’), (’Stephen Randolph’,’Computer’,679.40,’2019-02-20’)]#將插入語(yǔ)句賦給變量statement,?是占位符statement = 'INSERT INTO sales VALUES(?,?,?,?)'#因?yàn)橛兴膫€(gè)占位符,這里就需要提供一個(gè)包含4個(gè)值的元組,executemany()方法為data中的每個(gè)數(shù)據(jù)元組執(zhí)行#statement中的SQL命令,這里執(zhí)行了四次insert命令con.executemany(statement,data)#將修改保存到數(shù)據(jù)庫(kù)con.commit()#查詢(xún)sales表,并將命令結(jié)果賦值給一個(gè)光標(biāo)對(duì)象cursor,光標(biāo)對(duì)象有execute、executemany、fetchone、#fetchmany和fetchall方法cursor = con.execute('SELECT * FROM sales')#返回結(jié)果集中的所有行rows = cursor.fetchall()print(rows)print(’………………’)#查詢(xún)結(jié)果中行的數(shù)量row_counter = 0for row in rows: print(row) row_counter += 1print(’………………’)print(’Number of rows: %d’ % (row_counter))

Spyder右下角打印出來(lái)的結(jié)果:

[(’Richard Lucas’, ’Notepad’, 2.5, ’2019-01-02’), (’Jenny Kim’, ’Binder’, 4.15, ’2019-01-05’), (’Svetlana Crow’, ’Printer’, 155.75, ’2019-02-03’), (’Stephen Randolph’, ’Computer’, 679.4, ’2019-02-20’)]………………(’Richard Lucas’, ’Notepad’, 2.5, ’2019-01-02’)(’Jenny Kim’, ’Binder’, 4.15, ’2019-01-05’)(’Svetlana Crow’, ’Printer’, 155.75, ’2019-02-03’)(’Stephen Randolph’, ’Computer’, 679.4, ’2019-02-20’)………………Number of rows: 4

2、python內(nèi)置的sqlite3模塊,向表中插入新紀(jì)錄

名稱(chēng)為“CSV測(cè)試數(shù)據(jù).csv”的數(shù)據(jù)源:

Python使用sqlite3模塊內(nèi)置數(shù)據(jù)庫(kù)

將本地“CSV測(cè)試數(shù)據(jù).csv”的數(shù)據(jù)導(dǎo)入到本地?cái)?shù)據(jù)庫(kù)football_game.db中:

#!/usr/bin/env python3#創(chuàng)建SQLite3內(nèi)存數(shù)據(jù)庫(kù),并創(chuàng)建帶有四個(gè)屬性的sales表#sqlite3模塊,提供了一個(gè)輕量級(jí)的基于磁盤(pán)的數(shù)據(jù)庫(kù),不需要獨(dú)立的服務(wù)器進(jìn)程import sqlite3import csvinput_file = 'F://python入門(mén)//數(shù)據(jù)1//CSV測(cè)試數(shù)據(jù).csv'#為一個(gè)簡(jiǎn)單的本地?cái)?shù)據(jù)庫(kù)football_game.db創(chuàng)建連接,football_game.db為數(shù)據(jù)庫(kù)名稱(chēng)con = sqlite3.connect(’football_game.db’)#創(chuàng)建了一個(gè)光標(biāo)c = con.cursor()#如果表名存在,則刪除它drop_table = '''DROP TABLE IF EXISTS football_game;'''c.execute(drop_table)con.commit()#創(chuàng)建表名為football_game的表,將這個(gè)字符串賦值給create_tablecreate_table = '''CREATE TABLE IF NOT EXISTS football_game (name VARCHAR(20), sex VARCHAR(10), age INT, score INT, device_number VARCHAR(20), cost VARCHAR(20));'''#使用連接對(duì)象的execute()方法執(zhí)行create_table中的SQL命令c.execute(create_table)#使用連接對(duì)象的commit()方法將修改提交(保存)到數(shù)據(jù)庫(kù)con.commit()#從CSV格式的輸入文件中讀取要加載到數(shù)據(jù)庫(kù)中的數(shù)據(jù),創(chuàng)建file_reader對(duì)象,用于存儲(chǔ)CSV中的數(shù)據(jù)集file_reader = csv.reader(open(input_file,’r’),delimiter=’,’)#從輸入文件中讀入第一行header = next(file_reader,None)#將輸入的所有數(shù)據(jù)進(jìn)行循環(huán),先是每行循環(huán),再是每列循環(huán)for row in file_reader: data = [] for column_index in range(len(header)): data.append(row[column_index]) print(data) c.execute('INSERT INTO football_game VALUES(?,?,?,?,?,?)',data)#將修改保存到數(shù)據(jù)庫(kù)con.commit()print(’………………’)#執(zhí)行選擇所有數(shù)據(jù)的SQLoutput = c.execute('SELECT * FROM football_game')#返回結(jié)果集中的所有行,返回的是一個(gè)大的列表rows = output.fetchall()print(rows)print(’………………’)for row in rows: output = [] for column_index in range(len(row)): output.append(str(row[column_index])) print(output)

Spyder右下角打印出來(lái)的結(jié)果:

[’李剛’, ’男’, ’32’, ’567’, ’18512349553’, ’$500.00 ’][’王紅’, ’女’, ’54’, ’423’, ’18256785181’, ’$750.00 ’][’孫曉’, ’女’, ’25’, ’457’, ’13698762112’, ’$250.00 ’][’郭亮’, ’男’, ’65’, ’350’, ’18654320816’, ’$125.00 ’][’高英’, ’女’, ’15’, ’390’, ’18511113141’, ’$815.00 ’]………………[(’李剛’, ’男’, 32, 567, ’18512349553’, ’$500.00 ’), (’王紅’, ’女’, 54, 423, ’18256785181’, ’$750.00 ’), (’孫曉’, ’女’, 25, 457, ’13698762112’, ’$250.00 ’), (’郭亮’, ’男’, 65, 350, ’18654320816’, ’$125.00 ’), (’高英’, ’女’, 15, 390, ’18511113141’, ’$815.00 ’)]………………[’李剛’, ’男’, ’32’, ’567’, ’18512349553’, ’$500.00 ’][’王紅’, ’女’, ’54’, ’423’, ’18256785181’, ’$750.00 ’][’孫曉’, ’女’, ’25’, ’457’, ’13698762112’, ’$250.00 ’][’郭亮’, ’男’, ’65’, ’350’, ’18654320816’, ’$125.00 ’][’高英’, ’女’, ’15’, ’390’, ’18511113141’, ’$815.00 ’]

3、python內(nèi)置的sqlite3模塊,更新數(shù)據(jù)表中的記錄

名稱(chēng)為“CSV測(cè)試數(shù)據(jù).csv”的數(shù)據(jù)源:

Python使用sqlite3模塊內(nèi)置數(shù)據(jù)庫(kù)

更新表中的記錄:

#!/usr/bin/env python3#創(chuàng)建SQLite3內(nèi)存數(shù)據(jù)庫(kù),并創(chuàng)建帶有四個(gè)屬性的sales表#sqlite3模塊,提供了一個(gè)輕量級(jí)的基于磁盤(pán)的數(shù)據(jù)庫(kù),不需要獨(dú)立的服務(wù)器進(jìn)程import sqlite3import csvinput_file = 'F://python入門(mén)//數(shù)據(jù)1//CSV測(cè)試數(shù)據(jù).csv'#使用‘:memory:’在內(nèi)存中創(chuàng)建了一個(gè)數(shù)據(jù)庫(kù),創(chuàng)建了連接對(duì)象con來(lái)代表數(shù)據(jù)庫(kù)con = sqlite3.connect(’:memory:’)#創(chuàng)建表名為sales的表,將這個(gè)字符串賦值給queryquery = '''CREATE TABLE IF NOT EXISTS sales (customer VARCHAR(20), product VARCHAR(40), amount FLOAT, date DATE);'''#使用連接對(duì)象的execute()方法執(zhí)行query中的SQL命令con.execute(query)#使用連接對(duì)象的commit()方法將修改提交(保存)到數(shù)據(jù)庫(kù)con.commit()#向表中插入幾行數(shù)據(jù)data = [(’Richard Lucas’,’Notepad’,2.50,’2019-01-02’), (’Jenny Kim’,’Binder’,4.15,’2019-01-05’), (’Svetlana Crow’,’Printer’,155.75,’2019-02-03’), (’Stephen Randolph’,’Computer’,679.40,’2019-02-20’)]#for tuple in data:# print(tuple)#將插入語(yǔ)句賦給變量statement,?是占位符statement = 'INSERT INTO sales VALUES(?,?,?,?)'#因?yàn)橛兴膫€(gè)占位符,這里就需要提供一個(gè)包含4個(gè)值的元組,executemany()方法為data中的每個(gè)數(shù)據(jù)元組執(zhí)行#statement中的SQL命令,這里執(zhí)行了四次insert命令con.executemany(statement,data)#將修改保存到數(shù)據(jù)庫(kù)con.commit()#讀取CSV文件并更新特定的行file_reader = csv.reader(open(input_file,’r’),delimiter=’,’)#從輸入文件中讀入第一行header = next(file_reader,None)#將輸入的所有數(shù)據(jù)進(jìn)行循環(huán),先是每行循環(huán),再是每列循環(huán)for row in file_reader: data = [] for column_index in range(len(header)): data.append(row[column_index]) con.execute('UPDATE sales SET amount=?,date=? where customer=?;',data) #將修改保存到數(shù)據(jù)庫(kù)con.commit()#查詢(xún)sales表,并將命令結(jié)果賦值給一個(gè)光標(biāo)對(duì)象cursor,光標(biāo)對(duì)象有execute、executemany、fetchone、#fetchmany和fetchall方法cursor = con.execute('SELECT * FROM sales')#返回結(jié)果集中的所有行rows = cursor.fetchall()print(rows)print(’………………’)for row in rows: output = [] for column_index in range(len(row)): output.append(str(row[column_index])) print(output)

Spyder右下角打印出來(lái)的結(jié)果:

[(’Richard Lucas’, ’Notepad’, 4.25, ’2019-11-05’), (’Jenny Kim’, ’Binder’, 6.75, ’2019-12-05’), (’Svetlana Crow’, ’Printer’, 155.75, ’2019-02-03’), (’Stephen Randolph’, ’Computer’, 679.4, ’2019-02-20’)]………………[’Richard Lucas’, ’Notepad’, ’4.25’, ’2019-11-05’][’Jenny Kim’, ’Binder’, ’6.75’, ’2019-12-05’][’Svetlana Crow’, ’Printer’, ’155.75’, ’2019-02-03’][’Stephen Randolph’, ’Computer’, ’679.4’, ’2019-02-20’]

以上就是本文的全部?jī)?nèi)容,希望對(duì)大家的學(xué)習(xí)有所幫助,也希望大家多多支持好吧啦網(wǎng)。

標(biāo)簽: Python 編程
相關(guān)文章:
主站蜘蛛池模板: 久久一区二区免费播放 | 欧美一级欧美三级在线观看 | 亚洲精品在线观看91 | 国产亚洲欧美久久久久 | 色多多成视频人在线观看 | 一级做α爱毛毛片 | 国产污污视频 | 欧美超高清xoxoxoxo | 亚洲精品日韩专区silk | 美国黄色片免费看 | 久久精品视频16 | 小明看看永久视频 | 亚洲成网777777国产精品 | 久久精品免看国产成 | 国产日韩欧美亚洲青青草原 | 国产综合在线视频 | 国模私拍高清大胆专业网站 | 色wwwww | 黄色免费网站在线看 | 一级α片 | 青青草精品在线视频 | 欧美成人免费草草影院视频 | 成人三级做爰在线观看男女 | 在线观看日韩视频 | 性短视频在线观看免费不卡流畅 | 国产欧美日韩一区二区三区 | 亚洲欧美日韩综合在线一区二区三区 | 久久婷婷丁香七月色综合 | 成人国产网站 | 小明www永久免费播放平台 | 欧美成人精品不卡视频在线观看 | 欧美成a人片免费看久久 | 国产欧美在线播放 | 三级黄色小视频 | 亚洲日韩色综合视频 | 青草免费免费观看视频在线 | 欧美一区二三区 | 91porn国产| 国产精品在线观看 | 1000部啪啪勿入十八免费 | 欧美一级特黄aaa大片 |