创建数据库sqlite3文件
在Python中,可以使用内置的sqlite3
库来创建SQLite数据库文件。以下是创建SQLite数据库文件的简单示例代码:
import sqlite3
# 创建或连接到数据库文件
# 如果数据库文件不存在,它会被创建
# 如果已经存在,它会被打开并可供使用
conn = sqlite3.connect('example.db')
# 创建一个cursor对象,用于执行SQL命令
cursor = conn.cursor()
# 创建一个表
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()
这段代码会创建一个名为example.db
的SQLite数据库文件(如果该文件不存在的话),并在其中创建一个名为stocks
的表,该表具有五个字段:date
, trans
, symbol
, qty
, 和 price
。如果该表已经存在,它不会再次创建。最后,代码会关闭cursor和数据库连接。
评论已关闭