Using `executemany` to update entries in an existing SQLite3 database (using Python sqlite3)

后端 未结 2 1550
梦毁少年i
梦毁少年i 2021-02-14 20:00

I know that executemany can be used to conveniently add new entries to a database; useful to reduce the Python method-call overheads compared to single execut

2条回答
  •  花落未央
    2021-02-14 20:37

    what you have is perfect except that you should use zip(conts,ids) where conts and ids are lists. This does the rearrangement automatically for you.

提交回复
热议问题