EDIT:Django 1.8 maakt accentongevoelige lookup voor ingebouwde postgresql. https://docs.djangoproject. com/en/dev/ref/contrib/postgres/lookups/#std:fieldlookup-unaccent
In postgres contrib (8.4+) is er zelfs een functie zonder accent om gemakkelijk te zoeken:
voor postgres 9/8.5:
- https://github.com/adunstan/postgresql- dev/commits/master/contrib/unaccent
- http://www.sai.msu.su/~megera/ wiki/unaccent
voor postgres 8.4:
hier een voorbeeld van gebruik van django:
vals = MyObject.objects.raw(
"SELECT * \
FROM myapp_myobject \
WHERE unaccent(name) LIKE \'%"+search_text+"%'")
U kunt vóór vergelijking onaccent toepassen op tekstzoekopdrachten.
Optie die ik heb gemaakt is:
#!/usr/bin/env python
# -*- coding: utf-8 -*-
# parts of credits comes to clarisys.fr
from django.db.backends.postgresql_psycopg2.base import *
class DatabaseOperations(DatabaseOperations):
def lookup_cast(self, lookup_type):
if lookup_type in('icontains', 'istartswith'):
return "UPPER(unaccent(%s::text))"
else:
return super(DatabaseOperations, self).lookup_cast(lookup_type)
class DatabaseWrapper(DatabaseWrapper):
def __init__(self, *args, **kwargs):
super(DatabaseWrapper, self).__init__(*args, **kwargs)
self.operators['icontains'] = 'LIKE UPPER(unaccent(%s))'
self.operators['istartswith'] = 'LIKE UPPER(unaccent(%s))'
self.ops = DatabaseOperations(self)
Gebruik dit bestand base.py
in een map en gebruik deze map als db-backend. icontains en istartswith zijn nu ongevoelig voor hoofdletters en accenten.