python执行许多“重复密钥更新”?

时间:2012-10-10 17:43:38

标签: python mysql-python

我正在尝试使用以下脚本在重复密钥更新中执行pyman:

# data from a previous query (returns 4 integers in each row)
rows = first_cursor.fetchall()

query="""
INSERT INTO data (a, b, c)
VALUES (%s,%s,%s) ON DUPLICATE KEY UPDATE a=%s
"""
second_cursor.executemany(query,rows)

我收到了这个错误:

File "/usr/lib/pymodules/python2.6/MySQLdb/cursors.py", line 212, in executemany
  self.errorhandler(self, TypeError, msg)
File "/usr/lib/pymodules/python2.6/MySQLdb/connections.py", line 35, in defaulterrorhandler
  raise errorclass, errorvalue
TypeError: not all arguments converted during string formatting

如果不创建自己的循环,这是否可行?

4 个答案:

答案 0 :(得分:8)

这是MySQLdb中的一个错误,因为MySQLdb用来解析INSERT语句的正则表达式:

/usr/lib/pymodules/python2.7/MySQLdb/cursors.py 中:

restr = (r"\svalues\s*"
        r"(\(((?<!\\)'[^\)]*?\)[^\)]*(?<!\\)?'"
        r"|[^\(\)]|"
        r"(?:\([^\)]*\))"
        r")+\))")

insert_values= re.compile(restr)

虽然有很多关于这个问题的bug reports已被修复关闭,但我能够重现MySQLdb版本1.2.3中的错误。 (注意MySQLdb的latest version目前是1.2.4b4。)

也许这个bug是可以解决的,我真的不知道。但我认为这只是冰山一角 - 它指的是潜伏得更深一些的麻烦。例如,您可以使用INSERT ... SELECT语句,其中包含SELECT条件和参数的嵌套WHERE语句...使得正则表达式越来越复杂以处理这些情况在我看来似乎失败的战斗。

你可以使用oursql;它不使用正则表达式或字符串格式。它将参数化查询和参数分别传递给服务器。

答案 1 :(得分:0)

这是mysqldb的一个bug,正如ubuntu所说的那样,ssc更改sql然后它的工作原理:

insert into tb_name(col1, col2) select 1,2 on duplicate key update col1=1

答案 2 :(得分:0)

找到:

on duplicate key update col1=VALUES(col1), col2=VALUES(col2)

https://hardforum.com/threads/python-mysql-not-all-arguments-converted-during-string-formatting.1367039/

答案 3 :(得分:0)

当你编写如下的sql:

sql = insert into A (id, last_date, count) values(%s, %s, %s) on duplicate key update last_date=%s, count=count+%s'

您将收到以下错误:TypeError: not all arguments converted during string formatting.

所以当你在python中使用"ON DUPLICATE KEY UPDATE"时,需要编写如下的sql:

sql = 'insert into A (id, last_date, count) values(%s, %s, %s) on duplicate key update last_date=values(last_date),count=count+values(count)'