python操作mysql时候报错
import MySQLdb conn=MySQLdb.connect(host='localhost',user='root',passwd='123')
cursor=conn.cursor() u='3' bb='<b>3:1</b>' cursor.execute('insert into bu.test (id,log) values (%s,%s)'% (str(u),bb) ) conn.commit() cursor.close() conn.close()之后会报错
_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 '<b>3:1</b>)' at line 1")
如果把变量bb的值改为bb='3:1'会报以下错误
_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 ':1)' at line 1")
所以知道肯定是bb的字符串中的特殊字符在捣蛋,这个怎么处理
bb=r'3:1' 也不行
如何处理,麻烦帮忙,谢谢啊
不要用%或者+操作符来拼接SQL语句,应该使用占位符。即execute的第二个参数。
即
cursor.execute('insertintobu.test(id,log)values(%s,%s)',(str(u),bb))参考: http://stackoverflow.com/a/775399
+1最外边用双引号也不对bb外边再加个双引号版权声明:本文内容由阿里云实名注册用户自发贡献,版权归原作者所有,阿里云开发者社区不拥有其著作权,亦不承担相应法律责任。具体规则请查看《阿里云开发者社区用户服务协议》和《阿里云开发者社区知识产权保护指引》。如果您发现本社区中有涉嫌抄袭的内容,填写侵权投诉表单进行举报,一经查实,本社区将立刻删除涉嫌侵权内容。