0
cur.executemany(sql, rows)

我有rows一个空迭代器,它会触发一个错误。

如果我这样做,cur.executemany(sql, list(rows))那么它工作正常。

 File "/Enthought/Canopy_64bit/User/lib/python2.7/site-packages/MySQLdb/cursors.py", line 252, in executemany
    r = self._query('\n'.join([query[:p], ',\n'.join(q), query[e:]]))
  File "/Enthought/Canopy_64bit/User/lib/python2.7/site-packages/MySQLdb/cursors.py", line 344, in _query
    rowcount = self._do_query(q)
  File "/Enthought/Canopy_64bit/User/lib/python2.7/site-packages/MySQLdb/cursors.py", line 308, in _do_query
    db.query(q)
_mysql_exceptions.ProgrammingError: (1064, "You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '' at line 1")

以下是代码MySQLdb Cursors.py

    def executemany(self, query, args):

        """Execute a multi-row query.

        query -- string, query to execute on server

        args

            Sequence of sequences or mappings, parameters to use with
            query.

        Returns long integer rows affected, if any.

        This method improves performance on multiple-row INSERT and
        REPLACE. Otherwise it is equivalent to looping over args with
        execute().

        """
        del self.messages[:]
        db = self._get_db()
        if not args: return
        if isinstance(query, unicode):
            query = query.encode(db.unicode_literal.charset)
        m = insert_values.search(query)
        if not m:
            r = 0
            for a in args:
                r = r + self.execute(query, a)
            return r
        p = m.start(1)
        e = m.end(1)
        qv = m.group(1)
        try:
            q = [ qv % db.literal(a) for a in args ]
        except TypeError, msg:
            if msg.args[0] in ("not enough arguments for format string",
                               "not all arguments converted"):
                self.errorhandler(self, ProgrammingError, msg.args[0])
            else:
                self.errorhandler(self, TypeError, msg)
        except (SystemExit, KeyboardInterrupt):
            raise
        except:
            exc, value, tb = sys.exc_info()
            del tb
            self.errorhandler(self, exc, value)
        r = self._query('\n'.join([query[:p], ',\n'.join(q), query[e:]]))
        if not self._defer_warnings: self._warning_check()
        return r
4

1 回答 1

1

简短的回答是:不,MySQLdb 不支持将空迭代器参数传递给executemany.

为什么不?因为线if not args: return。这通过完全切断服务器并返回来处理您不提供参数的情况None。空列表、字典、集合或元组False的真值是 ,但迭代器的真值总是True

如果您在 中注释掉该行cursors.py,则任何空序列或映射都将与ER_PARSE_ERROR空迭代器相同。

为了executemany支持空参数,它必须以args某种方式测试是否为空。ifargs是一个迭代器,唯一的办法就是调用.next()并观察结果是否StopIteration异常;没有其他方法可以确定任意迭代器是否为空。这将是不切实际的,因为它从迭代器中消耗一个项目并且不适用于任何非迭代器类型,并且毫无意义,因为executemany首先不打算在没有参数的情况下使用。

于 2014-05-19T20:52:50.767 回答