Python Sqlite3 – 数据不会永久保存
我在SQLite3和
Python 3上做错了.也许我误解了SQLite数据库的概念,但我希望,即使在关闭应用程序之后,数据也会存储在数据库中?当我插入数据并重新打开应用程序时,插入消失,数据库为空.
这是我的小数据库: import sqlite3 def createTable(): conn.execute('''CREATE TABLE VideoFile (ID INTEGER PRIMARY KEY NULL,FileName TEXT NOT NULL,FilePath TEXT NOT NULL,numOfFrames INT NOT NULL,FPS INT NOT NULL,Tags TEXT NOT NULL,Voting REAL);''') def insert(): conn.execute("INSERT INTO VideoFile (Filename,FilePath,numOfFrames,FPS,Tags,Voting) VALUES ('ARCAM_0010_100','Categories/Dirt/Small',2340,50,'Bock',1 )"); conn.execute("INSERT INTO VideoFile (Filename,1 )"); def printAll(cursor): cursor = conn.execute("SELECT ID,FileName,numOfFrames from VideoFile") for row in cursor: print("ID = ",row[0]) print("FileName = ",row[1]) print("FilePath = ",row[2]) print("numOfFrames = ",row[3],"n") print("Operation done successfully") conn.close() conn = sqlite3.connect('AssetBrowser.db') createTable() #comment out after executing once insert() printAll() 我做错了什么? 解决方法
将conn.commit()调用到
flush the transaction to disk.
当程序退出时,最后一个未完成的事务将回滚到上一次提交. (或者,更准确地说,the rollback is done by the next program to open the database.)因此,如果从未调用commit,则数据库没有变化. 注意per the docs:
因此,如果您使用这样的with语句: with sqlite3.connect('AssetBrowser.db') as conn: createTable() insert() printAll() 然后,当Python离开with语句时假设没有引发异常的错误,将自动为您提交事务. 顺便说一句,如果你使用 def createTable(): conn.execute('''CREATE TABLE IF NOT EXISTS VideoFile (ID INTEGER PRIMARY KEY NULL,Voting REAL);''') (编辑:李大同) 【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容! |