SQLite数据库简单操作
-- 创建一个新的SQLite数据库文件
-- 假设我们正在使用Python的sqlite3库
-- 连接到数据库(如果文件不存在,将会创建一个新的数据库)
conn = sqlite3.connect('example.db')
-- 创建一个cursor对象来帮助执行SQL语句
cur = conn.cursor()
-- 创建一个表
cur.execute('''
CREATE TABLE IF NOT EXISTS stocks (
date text,
trans text,
symbol text,
qty real,
price real
)
''')
-- 插入一些数据
cur.execute("INSERT INTO stocks VALUES ('2020-01-05', 'BUY', 'RHAT', 100, 35.14)")
-- 查询数据
cur.execute("SELECT * FROM stocks")
-- 获取查询结果
rows = cur.fetchall()
for row in rows:
print(row)
-- 关闭cursor
cur.close()
-- 提交事务并关闭连接
conn.commit()
conn.close()
这段代码展示了如何在Python中使用sqlite3库来创建一个新的SQLite数据库文件,创建一个表,插入数据,以及查询数据。这是数据库操作的基本范例。
评论已关闭