English 中文(简体)
我可以向沙尔基利特3号油井喷洒,以便适当开展工作。
原标题:I can t get Python s executemany for sqlite3 to work properly

我正试图用手法将价值观纳入一个数据库,但我刚刚赢得了工作。 样本如下:

clist = []
clist.append("abc")
clist.append("def")
clist.append("ghi")
cursor.executemany("INSERT INTO myTable(data) values (?) ", clist)

This gives me the following error:

sqlite3.ProgrammingError: Incorrect number of bindings supplied. The current statement uses 1, and there are 3 supplied.

然而,当我改变名单时,该名单行文如下:

clist = ["a", "b"]
cursor.executemany("INSERT INTO myTable(data) values (?) ", clist)

它按照预期发挥作用。 我可以在数据库中看到数据。 为什么第一个清单不可行,第二个清单不可行?

(PS:这只是一个样本,而不是实际代码。) 我对简便做了小的测试。

最佳回答

根据我所知的处决,你指的是,

clist = [("abc", ), ("def", ), ("ghi", )]
cursor.executemany("INSERT INTO myTable(data) values(?)", clist)

类似情况。 不用引用我的话说, for子在 app子里使用,但你需要les子(更一般是可变的)。

你们所看到的错误是,它试图通过你再次提供的每一项手段来振兴你,这样你的发言就象:

clist = [( a ,  b ,  c ), ( d ,  e ,  f ), ( g ,  h ,  i )]

I don t know what your second query is trying to accomplish, but it appears to address a different table, so I m guessing off of no schema info, but if you change the single character strings to multicharacter strings, it will fail too.

问题回答

仅补充背景: 在密切相关的情况下,我打算在一个表格中插入一个多图清单,使用<代码>executemany。 因此:

res = [("John", "2j4o1h2n"), ("Paula", "lsohvoeemsy"), ("Ben", "l8ers")]

cur.executemany("INSERT INTO users (user, password) VALUES (?)", res)

具体检查在某个时间(single? para-substitution in the VALUES field)并把它分为其封装特性(<username> <password>, in this case),它没有sqlite3.Prograig Error exception>>>>>。 现有说明使用1,并提供2份<代码/代码>,以及预期在中单独替换。 因此,它规定:

cur.executemany("INSERT INTO users (user, password) VALUES (?, ?)", res)

这是一个三边的例子,但might混淆了一点,我希望它可以帮助那些 st的人。





相关问题
Can Django models use MySQL functions?

Is there a way to force Django models to pass a field to a MySQL function every time the model data is read or loaded? To clarify what I mean in SQL, I want the Django model to produce something like ...

An enterprise scheduler for python (like quartz)

I am looking for an enterprise tasks scheduler for python, like quartz is for Java. Requirements: Persistent: if the process restarts or the machine restarts, then all the jobs must stay there and ...

How to remove unique, then duplicate dictionaries in a list?

Given the following list that contains some duplicate and some unique dictionaries, what is the best method to remove unique dictionaries first, then reduce the duplicate dictionaries to single ...

What is suggested seed value to use with random.seed()?

Simple enough question: I m using python random module to generate random integers. I want to know what is the suggested value to use with the random.seed() function? Currently I am letting this ...

How can I make the PyDev editor selectively ignore errors?

I m using PyDev under Eclipse to write some Jython code. I ve got numerous instances where I need to do something like this: import com.work.project.component.client.Interface.ISubInterface as ...

How do I profile `paster serve` s startup time?

Python s paster serve app.ini is taking longer than I would like to be ready for the first request. I know how to profile requests with middleware, but how do I profile the initialization time? I ...

Pragmatically adding give-aways/freebies to an online store

Our business currently has an online store and recently we ve been offering free specials to our customers. Right now, we simply display the special and give the buyer a notice stating we will add the ...

Converting Dictionary to List? [duplicate]

I m trying to convert a Python dictionary into a Python list, in order to perform some calculations. #My dictionary dict = {} dict[ Capital ]="London" dict[ Food ]="Fish&Chips" dict[ 2012 ]="...