前面幾篇,介紹了命令行方式和圖形界面方式讀寫數(shù)據(jù)庫,而數(shù)據(jù)庫的實(shí)際應(yīng)用,通常需要與程序結(jié)合起來,通過程序來實(shí)現(xiàn)對(duì)數(shù)據(jù)庫的訪問和讀寫。
SQLite支持多種編程語言的開發(fā)調(diào)用:C, C++, PHP, Perl, Java, C#,Python, Ruby等。
本篇先介紹Python語言來調(diào)用SQLite數(shù)據(jù)庫,為什么先介紹Python呢?因?yàn)镻ython用起來十分方便,簡單的幾行代碼,就能夠?qū)崿F(xiàn)我們想要的功能(當(dāng)然前提是先配置好python的開發(fā)環(huán)境)。
1 Python讀寫SQLite基本流程
這里先列舉出Python讀寫SQLite數(shù)據(jù)庫的基本流程:
2 編程實(shí)現(xiàn)
2.1 基本流程
引入sqlite3依賴包后,首先是連接數(shù)據(jù)庫,調(diào)用的是connect方法:
fileDB = 'test4.db' # 數(shù)據(jù)庫文件
conn = sqlite3.connect(fileDB) # 連接數(shù)據(jù)庫
然后需要?jiǎng)?chuàng)建游標(biāo):
cur = conn.cursor() # 創(chuàng)建游標(biāo)
這時(shí),就可以通過execute方法執(zhí)行sql語句了,比如查詢語句:
sql = 'select * from SCORE' # SQLite語句(查詢數(shù)據(jù))
cur.execute(sql)
我們也可以將查詢到的數(shù)據(jù)打印出來:
print(cur.fetchall()) # 打印所有數(shù)據(jù)
最后關(guān)閉連接
conn.close() # 關(guān)閉連接
2.2 數(shù)據(jù)插入
使用python程序連接到數(shù)據(jù)庫后,也可通過程序來實(shí)現(xiàn)數(shù)據(jù)插入數(shù)據(jù)庫,只需要繼續(xù)使用execute方法執(zhí)行sql語句即可。
2.2.1 插入單條數(shù)據(jù)
有兩種方式可以實(shí)現(xiàn)單條數(shù)據(jù)的插入:
# 插入單條數(shù)據(jù)
data = "7,70,81,88"
cur.execute('insert into SCORE values (%s)' % data) # 方式1
cur.execute("insert into SCORE values(?,?,?,?)", (8, 81, 85, 83)) # 方式2
2.2.2 插入多條數(shù)據(jù)
多條數(shù)據(jù)一起插入,就要使用executemany方法:
# 插入多條數(shù)據(jù)
cur.executemany('insert into SCORE values(?,?,?,?)', [(9, 85, 88, 86), (10, 88, 83, 90)])
2.2.3 保存數(shù)據(jù)
最后要調(diào)用commit,才能將數(shù)據(jù)庫的修改保存下來:
# 提交(保存)
conn.commit()
3 測試
3.1 運(yùn)行python程序
編寫python程序,插入一些數(shù)據(jù)進(jìn)行測試。
執(zhí)行python程序,結(jié)果如下:
3.2 命令行查看驗(yàn)證
使用命令行來查看數(shù)據(jù)庫,可以發(fā)現(xiàn)數(shù)據(jù)庫中已經(jīng)新增了幾條數(shù)據(jù),說明通過python程序已經(jīng)成功修改了數(shù)據(jù)庫的內(nèi)容。
4 附:完整程序
完整的python程序如下:
import sqlite3
fileDB = 'test4.db' # 數(shù)據(jù)庫文件
sql = 'select * from SCORE' # SQLite語句(查詢數(shù)據(jù))
# 連接數(shù)據(jù)庫
conn = sqlite3.connect(fileDB)
# 執(zhí)行sql語句
cur = conn.cursor() # 創(chuàng)建游標(biāo)
cur.execute(sql)
# 打印
print(cur.fetchone()) # 打印第1條數(shù)據(jù)
print(cur.fetchmany(2)) # 再打印2條數(shù)據(jù)
print(cur.fetchall()) # 再打印所有數(shù)據(jù)
# 插入單條數(shù)據(jù)
data = "7,70,81,88"
cur.execute('insert into SCORE values (%s)' % data) # 方式1
cur.execute("insert into SCORE values(?,?,?,?)", (8, 81, 85, 83)) # 方式2
# 插入多條數(shù)據(jù)
cur.executemany('insert into SCORE values(?,?,?,?)', [(9, 85, 88, 86), (10, 88, 83, 90)])
# 打印
cur.execute(sql)
print('------------')
print(cur.fetchall())
# 提交(保存)
conn.commit()
# 關(guān)閉連接
conn.close()
5 總結(jié)
本篇介紹了如何使用Python語言來進(jìn)行SQLite數(shù)據(jù)庫的讀寫,在嵌入式式開發(fā)中,更多的是使用C/C++語言進(jìn)行開發(fā),因此,下篇我們介紹如何使用C語言來進(jìn)行SQLite數(shù)據(jù)庫的讀寫。
-
數(shù)據(jù)庫
+關(guān)注
關(guān)注
7文章
3794瀏覽量
64359 -
SQlite
+關(guān)注
關(guān)注
0文章
78瀏覽量
15936 -
python
+關(guān)注
關(guān)注
56文章
4792瀏覽量
84627
發(fā)布評(píng)論請先 登錄
相關(guān)推薦
評(píng)論