我的 SQLite python 代码没有使插入数据永久化,因为当我尝试执行选择查询时没有数据输出

问题描述 投票:0回答:1

当我尝试执行选择查询时,它什么也没显示,我不知道为什么当我在不同的函数中调用它时 This is the creating table code This is the code which will insert data

我尝试了一个 SQL select 语句,我希望它能给我一个老师的代码,但这个问题是它什么也不显示。这是输出 enter image description here

python sqlite
1个回答
0
投票

根据docs,插入语句隐式打开一个事务。插入行完成后,您需要调用

connection_obj.commit()
来提交事务。

© www.soinside.com 2019 - 2024. All rights reserved.