Ways to modify the MySQL default character set

Source: Internet
Author: User

MySQL default character set modification method may not be everyone, the following describes the two most common ways to modify the default MySQL character set, for your reference to learn.

Can the MySQL default character set be modified? The answer is yes, the following will teach you two ways to modify the MySQL default character set, you want to learn the MySQL default character set can be enlightened.

(1) The simplest method of modification is to modify the character set key values in the MySQL My.ini file,

such as Default-character-set = UTF8
Character_set_server = UTF8

After the modification, restart the MySQL services, service MySQL restart

Use mysql> SHOW VARIABLES like ' character% '; View, found that the database encoding has been changed to UTF8

  1. MySQL> SHOW VARIABLES like ' character% ';
  2. +--------------------------+---------------------------------+
  3. | variable_name | Value |
  4. +--------------------------+---------------------------------+
  5. | character_set_client | Latin1 |
  6. | character_set_connection | Latin1 |
  7. | Character_set_database | Latin1 |
  8. | Character_set_filesystem | binary |
  9. | Character_set_results | Latin1 |
  10. | Character_set_server | Latin1 |
  11. | Character_set_system | UTF8 |
  12. | Character_sets_dir | D: "mysql-5.0.37" Share "charsets" |
  13. +--------------------------+---------------------------------+
  14. MySQL> SHOW VARIABLES like ' collation_% ';
  15. +----------------------+-----------------+
  16. | variable_name | Value |
  17. +----------------------+-----------------+
  18. | collation_connection | Utf8_general_ci |
  19. | Collation_database | Utf8_general_ci |
  20. | Collation_server | Utf8_general_ci |
  21. +----------------------+-----------------+

(2) 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;

Ways to modify the MySQL default 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.