使用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('SELECT * FROM stocks')
print(cursor.fetchall())
# 插入数据
cursor.execute('''
INSERT INTO stocks (date, trans, symbol, qty, price)
VALUES ('2020-01-05', 'BUY', 'RHAT', 100, 35.14)
''')
# 更新数据
cursor.execute('''
UPDATE stocks SET price = 50.00 WHERE symbol = 'RHAT'
''')
# 删除数据
cursor.execute('''
DELETE FROM stocks WHERE symbol = 'RHAT'
''')
# 提交事务
conn.commit()
# 关闭连接
conn.close()
这段代码展示了如何使用Python的sqlite3库来连接SQLite数据库,创建一个名为stocks
的表,对表进行查询、插入、更新和删除操作,并在最后关闭数据库连接。
评论已关闭