Re: case insensitive search

2008-10-28 Thread DULMANDAKH Sukhbaatar
> "(A bug: SQLite only understands upper/lower case for 7-bit Latin > characters. Hence the LIKE operator is case sensitive for 8-bit iso8859 > characters or UTF-8 characters. For example, the expression 'a' LIKE 'A' is > TRUE but 'æ' LIKE 'Æ' is FALSE.)." Got it. > So it sounds like you will nee

Re: case insensitive search

2008-10-28 Thread Karen Tracey
On Tue, Oct 28, 2008 at 10:54 AM, DULMANDAKH Sukhbaatar < [EMAIL PROTECTED]> wrote: > > > Use search_fields = ['name'] in the corresponding > > class inside admin.py > > I did. Actually my text is Cyrillic. Just now I tested searching > sample latin or english text, and search wo

Re: case insensitive search

2008-10-28 Thread DULMANDAKH Sukhbaatar
> Use search_fields = ['name'] in the corresponding > class inside admin.py I did. Actually my text is Cyrillic. Just now I tested searching sample latin or english text, and search workin fine. Is it problem with non-english text? if so how i can fix it, and make work? -- Re

Re: case insensitive search

2008-10-28 Thread srini
Mr.Dulmandakh Use search_fields = ['name'] in the corresponding class inside admin.py Their is no such a case sensitive exists in Django search field , It will show it's matches either case sensitive or case insensitive. > Hello all. > > Just now I've deployed my