如何在sqlite语句中插入大量列表条目
好的,我将 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
apsw 游标有一个 executemany 方法:
apsw cursors have an executemany method: