我正在使用Python通過SQLite3創建表,我得到的消息告訴表已經在解釋器中創建了表,但是當在cmd中查看錶時,沒有這樣的表。這裏是我的代碼:使用Python和SQLite創建表,沒有這樣的表
import sqlite3 as db
conn = db.connect('test.db')
cursor = conn.cursor()
cursor.execute("create table films(title text, year text, director text)")
print("tables added")
在解釋我得到:
>>> ================================ RESTART ================================
>>>
tables added
但通過SQLite的在cmd中查看數據庫,當我告訴:
Error: no such table: films