【错】_mysql_exceptions.ProgrammingError: (1064, "You have an e

在插入数据库的过程遇到以下错误:

_mysql_exceptions.ProgrammingError: (1064, "You have an e

最后发现插入的字符串中文中有单引号。

解决办法:

content = content.replace("'", "\\\'")
content = content.replace('"', '\\\"')

将内容全部进行替换。

你可能感兴趣的:(【错】_mysql_exceptions.ProgrammingError: (1064, "You have an e)