0

所以我在 Python 中有一个 sqlite3 数据库,其中是一个我试图添加 1000 个字符串的表。问题是,当我使用 executemany 命令时出现错误

sqlite3.ProgrammingError:提供的绑定数量不正确。当前语句使用 1,提供了 1000 个。

这是我的代码简化:

db = sqlite3.connect("service.db")
db.isolation_level = None
c = db.cursor()

c.execute("CREATE TABLE Places (id INTEGER PRIMARY KEY, name TEXT)")

toBeAdded = [0]*1000
i = 0
while i < 1000:
    toBeAdded[i] = ("P"+str(i+1))
    i += 1

c.executemany("INSERT INTO Places(name) VALUES (?)",[toBeAdded])

我也尝试了最后一个命令的不同形式,但没有运气。这是我在谷歌上能找到的唯一方法。

4

1 回答 1

2

您已向 提供了一个平面列表executemany。相反,该方法需要一个嵌套结构,每个内部序列表示要添加到查询的一组参数。

所以,你想['P0', 'P1', 'P2', ...]成为[['P0'], ['P1'], ['P2'], ...]. 您可以通过在创建列表时添加方括号来解决此问题,使其嵌套:

toBeAdded = [0]*1000
i = 0
while i < 1000:
    toBeAdded[i] = [("P"+str(i+1))] # Note the surrounding square brackets
    i += 1

附加反馈

生成数据的更好方法是使用for循环并摆脱while循环 - 您有预先确定的迭代次数要执行,因此使用for. 您也不需要事先初始化列表。

to_be_added = []
for i in range(1000):
    to_be_added.append([("P"+str(i+1))])

或者,使用列表推导

to_be_added = [[("P"+str(x+1))] for x in range(1000)]

你会注意到我已经从变量名中删除了 camelCase;这符合 Python 风格指南 - PEP8

于 2020-03-08T19:28:20.237 回答