On 3/26/08, Karen Tracey <[EMAIL PROTECTED]> wrote:

> you have told MySQL that the data is utf8-encoded.  I believe there is a way
> (described in the MySQL doc page I cited above) to globally change your
> MySQL config so it will expect/supply utf8 instead of latin1, so you might
> want to look into that.

We use this:

DROP DATABASE xxxxxx;
SET storage_engine=INNODB;
CREATE DATABASE xxxxxx DEFAULT CHARACTER SET utf8 COLLATE utf8_xxxxxx_ci;

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

Reply via email to