up vote 0 down vote favorite
1
share [g+] share [fb]

I've tried the following query with Django,

def search(search_text):
    q  = Info.objects.filter(title__contains=str(search_text))
    print q.query

The query that get printed is

SELECT "d"."id", "d"."foo" FROM "d_info" WHERE "d_info"."title" LIKE %hello% ESCAPE '\' 

The query fails because the text after LIKE doesn't have quotes around it. The query succeeds when I run the query on the sql prompt with quotes around the text after LIKE like below

SELECT "d"."id", "d"."foo" FROM "d_info" WHERE "d_info"."title" LIKE '%hello%' ESCAPE '\' 

How do I get Django to add the quotes around the search_text so that the query succeeds ?

I'm using Djanog with sqlite3

link|improve this question

64% accept rate
feedback

1 Answer

I tried this out with Postgresql 8.3. The query is generated without quotes. However executing the filter returns a valid queryset with expected instances. Can you try executing

q = Info.objects.filter(title__contains=str(search_text))
print q.count()

and see if it works?

link|improve this answer
It isn't different from what I have. Did you mean something else ? – rampr Sep 11 '10 at 7:07
I meant to ask, did you execute the query behind the (lazy) queryset? Print q.count() will tell you if the query fired OK. – Manoj Govindan Sep 11 '10 at 7:15
Sorry I missed the 2nd statement, it so turns out the query works within Django, but when asked to print the query and if I execute the same query in a mysql shell or sqlite shell, it doesn't work. Django is probably printing the query wrong. – rampr Sep 13 '10 at 9:45
feedback

Your Answer

 
or
required, but never shown

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