Mysql爬取数据时,未转义报错
2022/1/9 19:04:26
本文主要是介绍Mysql爬取数据时,未转义报错,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
Mysql爬取数据时,未转义报错
代码信息
for i in range(0,len(records)): author = records[i]['author'] userId = author['userId'] userName = author['name'] postTime = records[i]['createTime'] sql = "REPLACE INTO userinfo (userId, userName, postTime) VALUES ('%s', '%s', '%s')" data = (userId, userName, postTime) try: cursor.execute(sql % data) connect.commit() except : print(userId,userName,userName)
报错信息
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 'm mi fan')' at line 1")
博主在爬取时,存储用户名时遇到用户名I'm mi fan
的,会出现以上报错,原因是这个符号未转义'
加入代码userName1 = replace("'","\\'")
即可
原因如下
I'm mi fan
中存储时变成I\'m mi fan
即可将'
转义
但python环境中,使用replace函数插入\
防止python讲该字符当成转义符,需要加两个,即replace("'","\\'")
最终代码呈现
for i in range(0,len(records)): author = records[i]['author'] userId = author['userId'] userName = author['name'] postTime = records[i]['createTime'] sql = "REPLACE INTO userinfo (userId, userName, postTime) VALUES ('%s', '%s', '%s')" userName1 = userName.replace("'","\\'") data = (userId, userName1, postTime) try: cursor.execute(sql % data) connect.commit() except : print(userId,userName,userName1)
这篇关于Mysql爬取数据时,未转义报错的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!
- 2025-01-02MySQL 3主集群搭建
- 2024-12-25如何部署MySQL集群资料:新手入门教程
- 2024-12-24MySQL集群部署资料:新手入门教程
- 2024-12-24MySQL集群资料详解:新手入门教程
- 2024-12-24MySQL集群部署入门教程
- 2024-12-24部署MySQL集群学习:新手入门教程
- 2024-12-24部署MySQL集群入门:一步一步搭建指南
- 2024-12-07MySQL读写分离入门:轻松掌握数据库读写分离技术
- 2024-12-07MySQL读写分离入门教程
- 2024-12-07MySQL分库分表入门详解