The perfect solution to the Chinese garbled characters in mysql6.x under win7

The perfect solution to the Chinese garbled characters in mysql6.x under win7

1. Stop the MySQL service in the command line: net stop mysql stop mysql

2. Modify my.ini in the mysql installation directory and change default-character-set=latin to default-character-set=gbk (change several to several, I don't know if it is possible to change to utf-8)

3. Copy the newly modified my.ini to the C:\Windows directory and overwrite it.

4. Start the MySQL service in the command line: net start mysql , enter MySQL

5. Input: show variables like 'char%'; see which ones are latin

6. For example: character_set_database是latin , then enter set character_set_database=gbk ; until there is no latin. (Note: character_set_filesystem and character_set_system cannot be changed)

7. Only databases built after this will support Chinese encoding, so the original database can be deleted and rebuilt (I don’t know how to modify the encoding of a specified database yet).

Related references:

MySQL 5.6 (Win7 64-bit) download, installation and configuration graphic tutorial

How to configure php+Apache+mysql environment in win7 system

The above is the perfect solution to the Chinese garbled characters in mysql6.x under win7 introduced by the editor. I hope it will be helpful to everyone. If you have any questions, please leave me a message and I will reply to you in time. Thank you very much for your support of the 123WORDPRESS.COM website!

You may also be interested in:
  • MySQL 5.6 (Win7 64-bit) download, installation and configuration graphic tutorial
  • MySQL 5.7 installation and configuration tutorial under Windows 7
  • MySQL download, installation, configuration and use tutorial detailed version (win7x64)
  • How to configure php+Apache+mysql environment in win7 system
  • Brief introduction to building apache+php+mysql development environment under win7
  • Win7 64-bit system configuration php latest version development environment (php+Apache+mysql)
  • Detailed explanation of win7+apache+php+mysql environment configuration operation
  • Win7 system installation MySQL5.5.21 graphic tutorial

<<:  Detailed explanation of the application of Docker Swarm in continuous integration testing

>>:  Vue SPA first screen optimization solution

Recommend

Introduction to Semantic HTML Tags

In the past few years, DIV+CSS was very popular in...

A brief discussion on the design and optimization of MySQL tree structure tables

Preface In many management and office systems, tr...

Vue makes a simple random roll call

Table of contents Layout part: <div id="a...

How to successfully retrieve VMware Esxi root password after forgetting it

Prepare a CentOS6 installation disk (any version)...

Detailed steps for installing JDK and Tomcat on Linux cloud server (recommended)

Download and install JDK Step 1: First download t...

Detailed graphic tutorial on installing and uninstalling Tomcat8 on Linux

[ Linux installation of Tomcat8 ] Uninstall Tomca...

Summary of all HTML interview questions

1. The role of doctype, the difference between st...

JavaScript ES6 Module Detailed Explanation

Table of contents 0. What is Module 1.Module load...

Understanding render in Vue scaffolding

In the vue scaffolding, we can see that in the ne...

How to automatically import Vue components on demand

Table of contents Global Registration Partial Reg...

Viewing and analyzing MySQL execution status

When you feel that there is a problem with MySQL ...

In-depth understanding of the use of the infer keyword in typescript

Table of contents infer Case: Deepen your underst...

How to show or hide common icons on the desktop in Windows Server 2012

Windows Server 2012 and Windows Server 2008 diffe...

Solution to the problem that Docker container cannot access Jupyter

In this project, the Docker container is used to ...