This link has been bookmarked by 4 people . It was first bookmarked on 12 Jan 2009, by someone privately.
-
-
Character encoding hell: Converting MySQL latin1 to utf8 for use in Django
-
alter table TABLE_NAME modify FIELD_NAME blob;
alter database DATABASE_NAME charset=utf8;
alter table TABLE_NAME modify FIELD_NAME varchar(255) character set utf8;This forces MySQL to convert the binary format into varchar using character set utf8.
-
Would you like to comment?
Join Diigo for a free account, or sign in if you are already a member.