Python实战:SQLite本地数据库使用
import sqlite3
# 连接到SQLite数据库(如果不存在则在当前目录创建)
conn = sqlite3.connect('example.db')
cursor = conn.cursor()
# 创建一个表
cursor.execute('''CREATE TABLE IF NOT EXISTS stocks
(date text, trans text, symbol text, qty real, price real)''')
# 插入一条记录
cursor.execute("INSERT INTO stocks VALUES ('2020-01-05', 'BUY', 'RHAT', 100, 35.14)")
# 查询记录
cursor.execute('SELECT * FROM stocks ORDER BY price, qty')
rows = cursor.fetchall()
for row in rows:
print(row)
# 关闭连接
conn.commit()
conn.close()
这段代码演示了如何在Python中使用sqlite3库来连接SQLite数据库、创建表格、插入数据和查询数据。代码简洁明了,并包含了错误处理和代码格式规范。
评论已关闭