How to solve the Chinese garbled code in mysql toad

藏色散人
Release: 2023-02-14 09:35:28
Original
1762 people have browsed it

Mysql toad Chinese garbled solution: 1. Download the MySQL5.7 version and "Toad for MySQL_Freeware_7.9.0.637"; 2. Set the Options in toad to "Start the connection at startup"; 3. In toad Open "sql editor"; 4. Add "default-character-set=utf8" to the my.ini file.

How to solve the Chinese garbled code in mysql toad

The operating environment of this tutorial: Windows 10 system, MySQL version 5.7, Dell G3 computer.

How to solve the Chinese garbled code of mysql toad?

MySQL Toad for Mysql installation, configuration and importing Chinese data to solve problems such as garbled characters

1. Download the MySQL5.7 version and install the windows installation version on the official website. The download address is: https://dev.mysql.com/downloads/windows/installer/5.7.html

To install, select the development version, and just install it by default.

2. Download ToadforMySQL_Freeware_7.9.0.637 My network disk address https://pan.baidu.com/s/1tbvijuVWhPzURXmxqx-Sww

3. Set the Options in toad at startup When starting the connection

The next time you start the connection window, a pop-up connection window will pop up. Enter the user name root and password: the one you set when you installed MySQL

##3. Open the sql editor in toad

indicates that the test connection is successful

4. Import the Chinese table

TOOLs——import , check the table structure, collation is UTF-8, indicating that Chinese is supported

The import result is normal.

5. If the Chinese import is garbled

Create a new editor in toad for mysql (pl/sql query statements and command statements must be created differently. Window, I didn’t expect that toad for mysql can be done directly with an editor window). Enter

SHOW VARIABLES LIKE 'character_set_%';
SHOW VARIABLES LIKE 'collation_%';

Find my under

C:\ProgramData\MySQL\MySQL Server 5.7. ini file, add default-character-set=utf8

[mysqld]

character-set-server = utf8
[mysqld]
character- set-filesystem = utf8

Recommended study: "

MySQL Video Tutorial"

The above is the detailed content of How to solve the Chinese garbled code in mysql toad. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!