Hi!

Henrik Genssen wrote:
> on my dev-system:
> character_set_database => latin1
> 
> on production:
> character_set_database => utf-8
> 
> my testsystem is the one that works. 
> Does the above have any influence on my requests, as both tables are utf-8?

It shouldn't if your database has a proper character set. What does "show
database DBNAME" gives you in both cases? Possibly database on the
production server was created with a different character set. Table
character set and database character set are different things. There are
many of these character sets in MySQL and conversion to each of them
happens at certain points at a time during processing.

> Can I fix it using a config entry in django?

I don't think you can fix it with a setting but I can be mistaken here. The
best is to use the same settings for all hosts. I keep everything in utf8.

-- 
Dmitry Dulepov
Twitter: http://twitter.com/dmitryd/
Web: http://dmitry-dulepov.com/

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-us...@googlegroups.com.
To unsubscribe from this group, send email to 
django-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en.

Reply via email to