码迷,mamicode.com
首页 > 数据库 > 详细

MySQLdb的使用误区

时间:2016-12-08 00:07:20      阅读:179      评论:0      收藏:0      [点我收藏+]

标签:mysqldb

MySQLdb的使用误区

使用MySQLdb执行sql语句报错:

cursor.execute("insertinto hq_rank_xueqiu(symbol,name,current) values(%s,%s,%.1f)",(‘12‘,‘123‘,12.2))
MySQLdbTypeError: float argument required, not str

插入的current字段明明是float类型,却报错提示类型错误,查找官网原文

   Notice that there is a mix of types (strings, ints, floats) though we still only use %s


也就是说mysqldb提供的字符串格式化并不是python的字符串格式化,所有的变量类型插入 的时候都必须用%s代替,于是将%.1f替换成%s就可以了

>>>cursor.execute("insertinto hq_rank_xueqiu(symbol,name,current) values(%s,%s,%s)",(‘12‘,‘123‘,12.3))


 


MySQLdb的使用误区

标签:mysqldb

原文地址:http://3379770.blog.51cto.com/3369770/1880399

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!