How to solve the mysql insert garbled problem

How to solve the mysql insert garbled problem

Problem description:

When inserting Chinese characters into MySQL, or Chinese characters are displayed normally in MySQL, but jsp displays Chinese characters in MySQL in the foreground, it is garbled.

Solution:

Enter the mysql console and execute the following command:

SET character_set_client='utf8';
SET character_set_connection='utf8';
SET character_set_results='utf8';

More solutions:

client The character set used by the client.
connection Set the character set type for connecting to the database. If the program does not specify the character set type used to connect to the database, the default character set on the server is used.
database The character set used by a library in the database server. If it is not specified when the library is created, the character set specified when the server is installed will be used.
results The character set used by the database when returning data to the client. If not specified, the server's default character set is used.
server The default character set specified when the server is installed.
system The character set used by the database system.

The CMD client input uses GBK encoding, while the database encoding format is UTF-8. The inconsistent encoding results in garbled characters. The current encoding format of the CMD client cannot be modified, so you can only modify the encoding set of connection, client, and results to inform the server that the currently inserted data uses GBK encoding. Although the server database uses UTF-8 encoding, it can recognize the GBK encoded data notified to the server and automatically convert it to UTF-8 for storage. You can use the following statement to quickly set the encoding set related to the client:
set names gbk;

After the settings are completed, the garbled problem of data inserted or displayed on the client can be solved, but we will soon find that this form of setting is only valid in the current window. When the window is closed and the CMD client is reopened, the garbled problem will appear again; so, how to make a once-and-for-all setting? There is a my.ini configuration file in the MySQL installation directory. By modifying this configuration file, the garbled character problem can be solved once and for all. In this configuration file, [mysql] is related to the client configuration, and [mysqld] is related to the server configuration. The default configuration is as follows:

[mysql]
default-character-set=utf8
[mysqld]
character-set-server=utf8

At this time, you only need to change the default encoding default-character-set=utf8 to default-character-set=gbk and restart the MySQL service.

This is the end of this article on how to solve the MySQL insert garbled problem. For more information on how to solve the MySQL insert garbled problem, please search for previous articles on 123WORDPRESS.COM or continue to browse the following related articles. I hope you will support 123WORDPRESS.COM in the future!

You may also be interested in:
  • How to solve the problem that mysql cannot be closed
  • Solve the problem that the MySQL database crashes unexpectedly, causing the table data file to be damaged and unable to start
  • This article solves the compatibility problem between Django 2.2 and MySQL
  • A brief discussion on the datetime format when exporting table data from MySQL to Excel
  • Quickly solve the problems of incorrect format, slow import and data loss when importing data from MySQL
  • Quickly solve the problem of garbled characters and jump lines in mysql exported scv files
  • Modification of time zone problem of MySQL container in Docker
  • pyMySQL SQL statement parameter passing problem, single parameter or multiple parameter description
  • MySQL 5.7.30 Installation and Upgrade Issues Detailed Tutorial
  • Solution to the problem of MySQL data delay jump

<<:  JavaScript to achieve mouse tailing effect

>>:  Implementing simple tabs with js

Recommend

How to delete all contents in a directory using Ansible

Students who use Ansible know that Ansible only s...

The principle and application of MySQL connection query

Overview One of the most powerful features of MyS...

Steps for Docker to build its own local image repository

1. Environment and preparation 1. Ubuntu 14.04 2....

A Brief Analysis of MySQL PHP Syntax

Let's first look at the basic syntax of the c...

HTML Code Writing Guide

Common Convention Tags Self-closing tags, no need...

Linux's fastest text search tool ripgrep (the best alternative to grep)

Preface Speaking of text search tools, everyone m...

Django+vue registration and login sample code

register The front-end uses axios in vue to pass ...

Vue detailed explanation of mixins usage

Table of contents Preface 1. What are Mixins? 2. ...

CSS implements a pop-up window effect with a mask layer that can be closed

Pop-up windows are often used in actual developme...

Example code of html formatting json

Without further ado, I will post the code for you...

DockerToolBox file mounting implementation code

When using docker, you may find that the file can...

What does mysql database do?

MySQL is a relational database management system....

In-depth understanding of MySQL global locks and table locks

Preface According to the scope of locking, locks ...

Detailed explanation of Mysql transaction processing

1. MySQL transaction concept MySQL transactions a...

Example code for hiding element scrollbars using CSS

How can I hide the scrollbars while still being a...