如何在sqlite语句中插入大量列表条目

发布于 2024-09-29 17:24:34 字数 352 浏览 1 评论 0原文

好的,我将 apsw 与 sqlite 一起使用,并且有一个很大的条目列表。每个条目都包含一个要插入的新行。条目数有时是 20 个,有时是 21 个。由于 apsw 在 curser.execute() 中支持多个 sql 语句,我想知道是否有一种不那么混乱的方法将我的所有列表条目插入数据库而不是像

for entry in foo:
    cursor.execute(INSERT OR UPDATE INTO database.main ("{0}".format(entry))

我 这样想要在一个线程中执行此操作,因为每次执行完成时 sqlite 都会自动提交到数据库。有没有更简单、更高效、更不混乱的方法?

Ok, I am using apsw with sqlite, and have a large list of entries.Each entry contains a new row to be inserted. The number of entries is sometimes 20, sometimes 21. Since apsw supports multiple sql statements in curser.execute(), I was wondering if there would be a less confusing way of inserting all my list entries into the database than just doing something like

for entry in foo:
    cursor.execute(INSERT OR UPDATE INTO database.main ("{0}".format(entry))

I want to do it in all one thread because sqlite auto-commits to the database each time the execute finishes. Is there an easier, more efficient, and less confusing way?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

青萝楚歌 2024-10-06 17:24:34

apsw 游标有一个 executemany 方法

cursor.executemany('INSERT OR UPDATE INTO database.main values (?)',foo)

apsw cursors have an executemany method:

cursor.executemany('INSERT OR UPDATE INTO database.main values (?)',foo)
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文