MySQL语句python转义单引号'

时间:2018-06-22 01:24:33

标签: python mysql scrapy character mysql-error-1064

我在下面的MySQL语句中使用python,但其中一个值中有一个单引号',因此出现以下错误:

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 L at line 1

要插入的值是Regal INT'L

如何转义或更正MySQL语句?

MySQL声明

def query(self, item):

        return "INSERT INTO income_statement({columns}) VALUES ({values})".format(

            columns=', '.join(item.keys()),

            values=self.item_to_text(item)

        )

def item_to_text(self, item):
        return ', '.join("'" + str(v) + "'" for v in item.values()
        )

1 个答案:

答案 0 :(得分:2)

返回字符串模板元组和变量元组,游标可以执行(模板((v1,v2,..)))

cursor.execute(‘insert into tablename (c, d) values (%s, %s)’, (v1, v2))

基于API Docs

编辑2:更完整的示例

def query(self, item):
  values = ', '.join(['%s']*len(item.keys()))
  stmt = "INSERT INTO income_statement({columns}) VALUES ({values})".format(
      columns=', '.join(item.keys()),
      values=values
  )
  # self.item_to_text(item) must be a tuple
  return (stmt, self.item_to_text(item))

# use it like so
cursor.execute(query(item))

编辑3: 我可以肯定的是,如果您真的想将语句作为单个字符串传递,则字符串本身必须有一个\,从而使用     INT \\'L

编辑4:

def item_to_text(self, item):
    return ', '.join(item.values()) # assuming item.values() returns a list or a tuple