Hi,
I'm working on implementation of firebird backend for django [1]
I've an issue related of icontains filter option. Firebird uses
CONTAINING sql clause for this, which is case insesitive.

The problem is that the output generated (where clause) is wrong.
It return:

        WHERE "TABLE"."FIELD" CONTAINING %value%

And, the correct form should be:

      WHERE "TABLE"."FIELD" CONTAINING  ' value '

It is using % instead '

The question is,  which method I have to touch to change this
behavior?

Thanks in advance.
--
Maxi.

[1]  http://code.google.com/p/django-firebird/






--~--~---------~--~----~------------~-------~--~----~
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 
django-developers+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/django-developers?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to