Python标准库88. 数据库 (sqlite3) 实践
import sqlite3
# 连接到数据库(如果不存在,则会创建)
conn = sqlite3.connect('example.db')
# 创建一个游标对象
cursor = conn.cursor()
# 执行SQL创建表
cursor.execute('''
CREATE TABLE IF NOT EXISTS stocks(
date text,
trans text,
symbol text,
qty real,
price real
);
''')
# 关闭游标
cursor.close()
# 提交事务
conn.commit()
# 关闭连接
conn.close()
这段代码演示了如何使用Python的sqlite3库来连接到一个SQLite数据库,并创建一个名为stocks
的表(如果该表不存在的话)。代码简洁,注重于教授SQLite数据库的基本使用方法。
评论已关闭