本文介绍了MySQL 连接器/Python - 将 python 变量插入 MySQL 表的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我正在尝试将 python 变量插入到 python 脚本中的 MySQL 表中,但它不起作用.这是我的代码
I'm trying to insert a python variable into a MySQL table within a python script but it is not working. Here is my code
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 传递的是实际的变量名,而不是它们持有的值.我该如何解决这个问题?
However, when I replace the variable names result[1,0]
, result[1,1]
, and result[1,2]
with their actual numerical values it does work. I suspect python is passing the actual variable names rather than the values they hold. How do I fix this?
推荐答案
假设你使用的是 mysql.connector
(我想你是),定义你自己的转换器类:
Assuming you are using mysql.connector
(I think you are), define your own converter class:
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)
这篇关于MySQL 连接器/Python - 将 python 变量插入 MySQL 表的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!