MySQL Connector / Python - 将python变量插入MySQL表

时间:2013-06-11 20:42:39

标签: python mysql insert mysql-connector-python

我正在尝试将python变量插入到python脚本中的MySQL表中,但它无法正常工作。这是我的代码

add_results=("INSERT INTO account_cancel_predictions"
            "(account_id,21_day_probability,flagged)"
            "Values(%(account_id)s,%(21_day_probability)s,%(flagged)s)")

data_result={
    'account_id':result[1,0],
    '21_day_probability':result[1,1],
    'flagged':result[1,2]
}

cursor.execute(add_results,data_result)

cnx.commit()
cursor.close()
cnx.close()

这会收到错误

ProgrammingError: Failed processing pyformat-parameters; 'MySQLConverter' object has no attribute '_float64_to_mysql'

但是,当我将变量名称result[1,0]result[1,1]result[1,2]替换为实际数值时,它确实有效。我怀疑python传递的是实际的变量名而不是它们持有的值。我该如何解决这个问题?

3 个答案:

答案 0 :(得分:19)

假设您正在使用mysql.connector(我认为您是),请定义您自己的转换器类:

class NumpyMySQLConverter(mysql.connector.conversion.MySQLConverter):
    """ A mysql.connector Converter that handles Numpy types """

    def _float32_to_mysql(self, value):
        return float(value)

    def _float64_to_mysql(self, value):
        return float(value)

    def _int32_to_mysql(self, value):
        return int(value)

    def _int64_to_mysql(self, value):
        return int(value)

config = {
    'user'    : 'user',
    'host'    : 'localhost',
    'password': 'xxx',
    'database': 'db1'
}

conn = mysql.connector.connect(**config)
conn.set_converter_class(NumpyMySQLConverter)

答案 1 :(得分:4)

您传递的某个值可能是numpy.float64类型,MySQL连接器无法识别。在填充字典时将其投射到真正的python float

答案 2 :(得分:0)

如果您使用的是python 3及更高版本,请使用mysqlclient pip install mysqlclient。这是django推荐的,所有其他驱动程序都不好。