Hi, I want to store Chinese characters in my MySQL 4.1.11 through Django but unluckily, like most novices, I get totally mess characters when displaying them on utf-8 encoded templates. After some investigation I found that the tables created by 'manage syncdb' are actually encoded by 'latin-1'. After changing the character set manually(using the 'alter table xxx convert to character set 'utf8''), the characters were finely displayed:-)
So, do I have to change my table encoding manually every time after performing 'manage syncdb'? That must be very painful:( Thanks Best Regards, Lin --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/django-users -~----------~----~----~----~------~----~------~--~---

