space0x42
unread,Apr 24, 2009, 12:24:20 AM4/24/09Sign in to reply to author
Sign in to forward
You do not have permission to delete messages in this group
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to Django users
HI all
This is puzzling me:
django 1.0 with a mysql database, innodb engine, database created with
"character set utf8 collate utf8_general_ci."
Filtering by object name is insensitive to stressed chars!
EntityType.objects.get(name='sven') returns the same object of
EntityType.objects.get(name='svèn')...
This problem is generic, I did several test, both with objects named
with stressed chars and objects with plain names and I always have
both get and filter return the same object despite I pass stressed or
plain version of name...
Did some google search about this, but didn't find anything...am I
missing something obvious?