从数据库中获取值和错误处理
从 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]