我正在尝试将 HTML 代码插入到 MySQL 数据库中的字段中。
我使用下面的代码来做到这一点
cur.execute("INSERT INTO `table1`(field1) VALUES("+ str(data) +")")
但我收到以下错误:
_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 \'<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01
Transitional//EN" "http://www.w3.or\' at line 3')
我怎么解决这个问题?提前致谢!