Hi Brandon,

>
> I see what the problem is, which isn't related to the SQL at all. It
> appears that "icontains" is not behaving as expected. It's supposed to
> be case-insensitive, but it's doing the opposite.
>
> Example, if I search for a WorkCategory using "print" it will return 0
> results. If I use "Print" it will return all of the WorkSamples with
> the category of "Print"
>
> Thoughts?

In the generated SQL, do you see LIKE instead of ILIKE in the WHERE
clause for the category match? Realize that contains and icontains
merely translate to the SQL test LIKE and ILIKE respectively which
your database is supposed to understand. So, it's either a Django bug
or a DB problem. You will know that by looking at the SQL being
generated (it should show ILIKE in the WHERE clause.) For example,
SQLite doesn't support case-sensitive contains (to it contains is the
same as icontains.) Your problem seems to be the opposite, though.

Try some of these things:

Run a straight query on the Category table with with
title__icontains='print' first.

If that works but the main query doesn't, try updating your Django to
the latest trunk.

If that still doesn't work, consider filing a ticket.

-Rajesh
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to