從資料庫中獲取值和錯誤處理

從 SQLite3 資料庫中獲取值。

列印 select 查詢返回的行值

import sqlite3
conn = sqlite3.connect('example.db')
c = conn.cursor()
c.execute("SELECT * from table_name where id=cust_id")
for row in c:
    print row # will be a list

獲取單個匹配的 fetchone() 方法

print c.fetchone()

對於多行使用 fetchall() 方法

a=c.fetchall() #which is similar to list(cursor) method used previously
for row in a:
    print row

可以使用函式內建的 sqlite3.Error 來完成錯誤處理

try:
    #SQL Code
except sqlite3.Error as e:
    print "An error occurred:", e.args[0]