gpt4 book ai didi

python - SQLite python 不更新表

转载 作者:IT王子 更新时间:2023-10-29 06:27:39 26 4
gpt4 key购买 nike

我有以下代码:

import sqlite3

con = sqlite3.connect("testDB")
cur = con.cursor()

#cur.execute('CREATE TABLE test_table (id integer primary key, data text)')
cur.execute('INSERT INTO test_table VALUES (?, ?)', (76, 'MyData'))

当我运行此脚本时,它不会更新表格。但是当我在 Linux 中使用 sqlite3 命令行执行相同的插入时,它会更新。为什么会这样或者我做错了什么?

最佳答案

# Save (commit) the changes
con.commit()

关于python - SQLite python 不更新表,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9804073/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com