pymysql:MySQL参数化LIKE查询

时间:2017-02-24 20:22:33

标签: python mysql pymysql parameterized-query

为什么我在尝试执行此查询时会收到TypeError: not all arguments converted during string formatting?我需要能够将%{}%附加到我传入的IP上,以便我可以运行LIKE mysql查询。

如果这不是使用LIKE通配符参数化%查询的正确方法,那么你如何做到这一点?

班级:

class IpCleaner(object):
    def __init__(self, ip):
        self.ip = ip
        self.iplike = '%{}%'.format(self.ip)

    def lookup(self):
        self.dbconnect()
        select_query = (
            "SELECT `name`,`source`,`destination` FROM mytable "
            "WHERE (`source` LIKE ? OR `destination` ? );"
        )

        params = [self.iplike, self.iplike]
        print params
        self.cur.execute(select_query, params)
        print self.cur.fetchall()

实例化:

a = IpCleaner('74.121.242.2')

a.lookup()

输出:

Traceback (most recent call last):
['%74.121.242.2%', '%74.121.242.2%']
  File "/home/dobbs/shunlibs/IpCleaner.py", line 87, in <module>
    a.palorulelookup()
  File "/home/dobbs/shunlibs/IpCleaner.py", line 81, in lookup
    self.cur.execute(select_query, params)
  File "/usr/lib64/python2.7/site-packages/pymysql/cursors.py", line 164, in execute
    query = self.mogrify(query, args)
  File "/usr/lib64/python2.7/site-packages/pymysql/cursors.py", line 143, in mogrify
    query = query % self._escape_args(args, conn)
TypeError: not all arguments converted during string formatting

1 个答案:

答案 0 :(得分:0)

%s变量

中使用?代替select_query