Python mysql 默认转义函数,损坏查询。原始查询字符串如下。它工作正常,并根据需要向数据库添加记录
INSERT IGNORE INTO state (`name`, `search_query`, `business_status`, `business_type`, `name_type`, `link`) VALUES ("test_name1", "test", "test_status", "test_b_typ", "test_n_typ", "test_link"), ("test_name2", "test", "test_status", "test_b_typ", "test_n_typ", "test_link")
但是在使用功能 safe_sql = self.conn.escape_string(original_sql) safe_sql 将其转义以使 sql Injection 安全之后,正在生成如下
b'INSERT IGNORE INTO state (`name`, `search_query`, `business_status`, `business_type`, `name_type`, `link`) VALUES (\\"test_name1\\", \\"test\\", \\"test_status\\", \\"test_b_typ\\", \\"test_n_typ\\", \\"test_link\\"), (\\"test_name2\\", \\"test\\", \\"test_status\\", \\"test_b_typ\\", \\"test_n_typ\\", \\"test_link\\")'
现在,如果我尝试执行 safe_sql,我会收到以下语法错误
MySQLdb._exceptions.ProgrammingError: (1064, 'You have an error in your SQL syntax; check the manual that corresponds to your MariaDB server version for the right syntax to use near \'\\"test_name1\\", \\"test\\", \\"test_status\\", \\"test_b_typ\\", \\"test_n_typ\\", \\"tes\' at line 1')
这让我想知道,如果我使用的转义功能损坏/不兼容,或者我没有以正确的方式使用它?此外,我一次输入数百条记录,并且由于与运行数百次的准备好的语句相比,单个查询的快速处理(我纯粹假设),我正在创建一个大型查询。
qq_笑_17
相关分类