vote up 0 vote down star

The db is PostgreSQL. When I try to execute a query with parameters, such as this one

cursor.execute("""
    SELECT u.username, up.description, 
        ts_rank_cd(to_tsvector(coalesce(username,'')|| coalesce(description,'')) , to_tsquery('%s')) as rank

        FROM auth_user u INNER JOIN pm_core_userprofile up on u.id = up.user_id
        WHERE to_tsvector(coalesce(username,'')|| coalesce(description,'')) @@ to_tsquery('%s')
        ORDER BY rank DESC;
    """, ["hello","hello"])

Django complains of a ProgrammingError, adding syntax error at or near the parameter (in this example, "hello"). Here's the part of the Django generated SQL statement that the error comes from:

to_tsquery('E'hello'')

Even if I copy-paste it to a postgreSQL shell, I get the syntax error. If I omit the 'E' part, it works. What should I make of it?

flag

2 Answers

vote up 3 vote down check

ozgur,

Try

to_tsquery(%s)

instead of

to_tsquery('%s')
link|flag
Thanks! This is embarrassing, I think I better take a vacation asap :) – shanyu Jun 6 at 17:54
Would have been more embarrassing if I had guessed wrong...I'm more used to SQL Server syntax. ;) – Robert Harvey Jun 6 at 17:56
vote up 0 vote down

I believe you are missing a ' after the E.

link|flag
The E stuff is put there by Django ORM, I just pass a string. – shanyu Jun 6 at 17:48

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.