我在 Windows 8 x64 上运行以下代码:
import sqlite3 as db
conn = db.connect('test.db')
cursor = conn.cursor()
cursor.execute("create table films(title text, year text, director text)")
print("table created")
cursor.execute('insert into films values("Annie Hall","1977","Woody Allen")')
cursor.execute('insert into films values("The Godfather","1972","Francis Ford Coppola")')
conn.close()
检查创建的 SQLite 文件(test.db)(使用sqlite 命令行 shell测试通过代码创建的表中是否有条目)显示什么。有什么帮助吗?