【Python】数据处理:SQLite操作
import sqlite3
# 连接到SQLite数据库(如果不存在,则会创建)
conn = sqlite3.connect('example.db')
# 创建一个Cursor对象
cursor = conn.cursor()
# 执行SQL语句创建表
cursor.execute('''CREATE TABLE IF NOT EXISTS stocks
(date text, trans text, symbol text, qty real, price real)''')
# 关闭Cursor对象
cursor.close()
# 提交事务
conn.commit()
# 关闭数据库连接
conn.close()
这段代码演示了如何使用Python的sqlite3库来连接到一个SQLite数据库,创建一个新的表(如果该表不存在的话),并在最后关闭相关的数据库连接。这是数据处理中一个非常基础且常用的操作。
评论已关闭