Sqlite3 - 不需要單獨的伺服器程序

sqlite3 模組由 GerhardHäring 編寫。要使用該模組,必須首先建立一個表示資料庫的 Connection 物件。這裡的資料將儲存在 example.db 檔案中:

import sqlite3
conn = sqlite3.connect('example.db')

你還可以提供特殊名稱:memory:在 RAM 中建立資料庫。一旦有了 Connection,就可以建立一個 Cursor 物件並呼叫它的 execute() 方法來執行 SQL 命令:

c = conn.cursor()

# Create table
c.execute('''CREATE TABLE stocks
         (date text, trans text, symbol text, qty real, price real)''')

# Insert a row of data
c.execute("INSERT INTO stocks VALUES ('2006-01-05','BUY','RHAT',100,35.14)")

# Save (commit) the changes
conn.commit()

# We can also close the connection if we are done with it.
# Just be sure any changes have been committed or they will be lost.
conn.close()