Re: Error when iexact meets integer field.

2006-06-25 Thread favo
Thanks for helping :-) --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Django developers" group. To post to this group, send email to django-developers@googlegroups.com To unsubscribe from this group, send email to

Re: Error when iexact meets integer field.

2006-06-24 Thread Russell Keith-Magee
On 6/25/06, favo <[EMAIL PROTECTED]> wrote: > > iexact use ILIKE as backend. this will cause error when effect on a > integer field. > we just need "!=". > > select id from auth_user where id ILIKE 5; > > select id from auth_user where id != 5; This is as desgined. iexact is for case insensitive

Error when iexact meets integer field.

2006-06-24 Thread favo
iexact use ILIKE as backend. this will cause error when effect on a integer field. we just need "!=". select id from auth_user where id ILIKE 5; select id from auth_user where id != 5; --~--~-~--~~~---~--~~ You received this message because you are subscribed to