Re: How do I use parameterized queries with LIKE? - Mailing list psycopg

From Adrian Klaver
Subject Re: How do I use parameterized queries with LIKE?
Date
Msg-id 4FC3F887.7010205@gmail.com
Whole thread Raw
In response to How do I use parameterized queries with LIKE?  ("W. Matthew Wilson" <matt@tplus1.com>)
List psycopg
On 05/28/2012 03:00 PM, W. Matthew Wilson wrote:
> This works just fine:
>
>      cursor.execute("""select email_address from customer where
> email_address like '%matt%'""")
>
> But when I move the "matt" part out and use a %s symbol instead, I get
> this error:
>
>      ValueError: unsupported format character ''' (0x27) at index 73
>
> What is the right solution here?

http://initd.org/psycopg/docs/usage.html#passing-parameters-to-sql-queries

So you need something like:

cursor.execute("""select email_address from customer where
 email_address like %s""", ("matt",))

Note in particular the ("matt",). The parameters in this form need to be passed
as a tuple.

>
> Thanks for the help.
>
> Matt
>


--
Adrian Klaver
adrian.klaver@gmail.com

psycopg by date:

Previous
From: "W. Matthew Wilson"
Date:
Subject: How do I use parameterized queries with LIKE?
Next
From: Daniele Varrazzo
Date:
Subject: Re: How do I use parameterized queries with LIKE?