如何使用准备语句在
sqlite中使用
Python / Django插入MULTIPLE记录?
http://docs.python.org/library/sqlite3.html#cursor-objects
Python的sqlite库没有准备的语句对象,但它们允许您使用参数化查询,并提供多个参数集.
编辑:根据请求执行的示例:
values_to_insert = [(1,"foo"),(2,"bar"),(3,"baz")]
cursor.executemany("""
INSERT INTO some_table ('item_num','item_name')
VALUES (?,?)""",values_to_insert)
原文链接:https://www.f2er.com/sqlite/197813.html