1. Change character set in MySQL console.
- check default character set.
- Change character set to the character set you want, for example, 'euckr'.
2. If your talbes had been already created before you changed the character set, you might need to change the default character sets of the tables.
- Check character set of your table.
- Change character set of the table.
> alter table [your databasename].[your tablename] convert to charset utf8;
No comments:
Post a Comment