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
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
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