Python學習筆記21:資料庫操作(sqlite3)

來源:互聯網
上載者:User

標籤:python   python指令碼   資料庫   sqlite3   database   

Python內建一個輕量級的關係型資料庫SQLite。這一資料庫使用SQL語言。
SQLite作為後端資料庫,可以搭配Python建網站,或者製作有資料存放區需求的工具。
SQLite還在其它領域有廣泛的應用,比如HTML5和移動端。Python標準庫中的sqlite3提供該資料庫的介面。


一 資料庫設計我將建立一個簡單的關係型資料庫,為一個書店儲存書的分類和價格。
資料庫中包含兩個表:category用於記錄分類,book用於記錄某個書的資訊。
一本書歸屬於某一個分類,因此book有一個外鍵(foreign key),指向catogory表的主鍵id。

【category】id int,sort int,name text【book】id int,sort int,name text,price real,category int


二 建立資料庫首先建立資料庫,以及資料庫中的表。
在使用connect()連結資料庫後,可以通過定位指標cursor,來執行SQL語句。

import sqlite3# data.db is a db file in the working directory.conn = sqlite3.connect("data.db")c = conn.cursor()# create tablesc.execute("'CREATE TABLE category      (id int primary key,        sort int,        name text)'")c.execute("'CREATE TABLE book      (id int primary key,        sort int,        name text,        price real,        category int,       FOREIGN KEY (category) REFERENCES category(id))'")# save the changesconn.commit()# close the connection with the databaseconn.close()

SQLite的資料庫是一個磁碟上的檔案,如上面的data.db,因此整個資料庫可以方便的移動或複製。
data.db一開始不存在,所以SQLite將自動建立一個新檔案。
利用execute()命令,我執行了兩個SQL命令,建立資料庫中的兩個表。建立完成後,儲存並斷開資料庫連接。


三 插入資料上面建立了資料庫和表,確立了資料庫的抽象結構。下面將在同一資料庫中插入資料:

import sqlite3conn = sqlite3.connect("data.db")c = conn.cursor()books = [(1, 1, 'Cook Recipe', 3.12, 1),         (2, 3, 'Python Intro', 17.5, 2),         (3, 2, 'OS Intro', 13.6, 2),        ]# execute "INSERT" c.execute("INSERT INTO category VALUES (1, 1, 'kitchen')")# using the placeholderc.execute("INSERT INTO category VALUES (?, ?, ?)", [(2, 2, 'computer')])# execute multiple commandsc.executemany('INSERT INTO book VALUES (?, ?, ?, ?, ?)', books)conn.commit()conn.close()

插入資料同樣可以使用execute()來執行完整的SQL語句。
SQL語句中的參數,使用"?"作為替代符號,並在後面的參數中給出具體值。
這裡不能用Python的格式化字串,如"%s",因為這一用法容易受到SQL注入攻擊。
我也可以用executemany()的方法來執行多次插入,增加多個記錄。
每個記錄是表中的一個元素,如上面的books表中的元素。


四 查詢在執行查詢語句後,Python將返回一個迴圈器,包含有查詢獲得的多個記錄。
迴圈讀取,也可以使用sqlite3提供的fetchone()和fetchall()方法讀取記錄:

import sqlite3conn = sqlite3.connect('test.db')c = conn.cursor()# retrieve one recordc.execute('SELECT name FROM category ORDER BY sort')print(c.fetchone())print(c.fetchone())# retrieve all records as a listc.execute('SELECT * FROM book WHERE book.category=1')print(c.fetchall())# iterate through the recordsfor row in c.execute('SELECT name, price FROM book ORDER BY sort'):    print(row)


五 更新和刪除記錄

可以更新某個記錄,或者刪除記錄:


import sqlite3conn = sqlite3.connect("test.db")c = conn.cursor()c.execute('UPDATE book SET price=? WHERE id=?',(1000, 1))c.execute('DELETE FROM book WHERE id=2')conn.commit()conn.close()

也可以直接刪除整張表:

c.execute('DROP TABLE book')

如果刪除data.db,那麼整個資料庫會被刪除。

Python學習筆記21:資料庫操作(sqlite3)

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.