MYSQL Character Set

Source: Internet
Author: User

How to modify the MySQL default character set: MySQL default encoding is Latin1, does not support Chinese, should be set to UTF8 to see if their database encoding is set.

(0)

1. If the MySQL installation directory, there is a suffix named:. ini configuration file, copy, modify to My.ini
2. If there is no. ini file in the MySQL installation directory, create a plain TXT file that is modified to: My.ini (note that you should see. txt before you modify it)
3. Modify the configuration file as follows:

[Client]
Default-character-set=UTF8     
[mysqld]
Character-set-Server=UTF8     
[MySQL]
Default-character-set=UTF8




(1)

Another way to modify the MySQL default character set is to use the MySQL command

  1. MySQL> SET character_set_client = UTF8;
  2. MySQL> SET character_set_connection = UTF8;
  3. MySQL> SET character_set_database = UTF8;
  4. MySQL> SET character_set_results = UTF8;
  5. MySQL> SET character_set_server = UTF8;
  6. MySQL> SET collation_connection = UTF8;
  7. MySQL> SET collation_database = UTF8;
  8. MySQL> SET collation_server = utf8;

In general, even if you set the table MySQL default character set is UTF8 and send the query through UTF-8 encoding, you will find that the database is still garbled. The problem is on the connection connection layer. The workaround is to execute the following sentence before sending the query:

    1. SET NAMES ' UTF8 ';

It is equivalent to the following three-sentence instruction:

    1. SET character_set_client = UTF8;
    2. SET character_set_results = UTF8;
    3. SET character_set_connection = UTF8;




MySQL Character set
The database system--and the database--and the table--fields can set the character set, and if subordinates each specify, use the parent's
If the table uses UTF-8 storage file, it must be UTF-8
connection is analogous to a character converter that is responsible for translating client-side writes with database encoding, as well as for database and return views. (client------>connection--->database) (database-->connection-->result)


MYSQL Character Set

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.