Home Database Mysql Tutorial MySQL中文乱码具体解决方案

MySQL中文乱码具体解决方案

Jun 07, 2016 pm 04:11 PM
mysql Chinese main Garbled characters specific article solution

以下的文章主要介绍的是MySQL中文乱码的解决,MySQL中文乱码在实际的应用中是经常出现,导致实际的运行中产生很多的不便,以下的文章就是介绍MySQL中文乱码的解决方案。望你能有所收获。 原来常常在群里看到MySQL的乱码问题,但是由于本人一直在用oracle和sq

以下的文章主要介绍的是MySQL中文乱码的解决,MySQL中文乱码在实际的应用中是经常出现,导致实际的运行中产生很多的不便,以下的文章就是介绍MySQL中文乱码的解决方案。望你能有所收获。

原来常常在群里看到MySQL的乱码问题,但是由于本人一直在用oracle和sql server所以没多在乎,昨天用了用MySQL结果就遇到了传说中的乱码…..。现在我们来讲讲MySQL的乱码问题。首先你进入的你MySQL

用show variables查看

这里可以查看到你的字符集,character_set_server是服务器编码。现在我们默认的是latin1要改变服务器的编码必须重新启动服务器,我们先用MySQLadmin –uroot shutdown关闭服务器,然后MySQLd –C GBK启动服务器 –C是character_set_server的一个简写(可以也可以写成MySQLd –character_set_server gbk).这样修改以后我们再进入MySQL查看就会显示:

这样我们就把服务器和数据库的编码改为了GBK。

现在我们就可以插入中文字符串了,但是为什么有时间还是会显示

<ol class="dp-xml"><li class="alt">
<span>Exception in thread "main" com.MySQL.jdbc.</span>MySQL<span>DataTruncation: <p></p>Data truncation: Data too long for column 'name' at row 1 </span>
</li></ol>
Copy after login

MySQL中文乱码解决中出现上述情况,这是因为你只是修改了MySQL的服务器的字符编码,并没有修改已经有数据库的编码,这时候你需要手动的把data目录下的数据库中的db.opt中的编码改为

<ol class="dp-xml">
<li class="alt"><span><span class="attribute">default-character-set</span><span>=</span><span class="attribute-value">gbk</span><span> </span></span></li>
<li>
<span class="attribute">default-collation</span><span>=</span><span class="attribute-value">gbk_chinese_ci</span><span> </span>
</li>
</ol>
Copy after login

这样修改以后你在重启服务器就可以插入中文了。

但是这时候还有个问题就是在你应用程序当中显示的是中文字符,但是在命令窗口还是乱码。

这时候你注意我们上面图中的character_set_client字符还是latin1当然显示的是乱码咯哟。所以你进入MySQL客户端程序的时候因该把客户端默认的编码改为gbk才能显示正常。

你可以在MySQL里修改,也可以在登陆的时候MySQL –uroot –default-character-set=gbk修改

如此以来就解决了MySQL中文乱码解决了。


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

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Repo: How To Revive Teammates
1 months ago By 尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
4 weeks ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

Implementing Machine Learning Algorithms in C++: Common Challenges and Solutions Implementing Machine Learning Algorithms in C++: Common Challenges and Solutions Jun 03, 2024 pm 01:25 PM

Common challenges faced by machine learning algorithms in C++ include memory management, multi-threading, performance optimization, and maintainability. Solutions include using smart pointers, modern threading libraries, SIMD instructions and third-party libraries, as well as following coding style guidelines and using automation tools. Practical cases show how to use the Eigen library to implement linear regression algorithms, effectively manage memory and use high-performance matrix operations.

How to optimize MySQL query performance in PHP? How to optimize MySQL query performance in PHP? Jun 03, 2024 pm 08:11 PM

MySQL query performance can be optimized by building indexes that reduce lookup time from linear complexity to logarithmic complexity. Use PreparedStatements to prevent SQL injection and improve query performance. Limit query results and reduce the amount of data processed by the server. Optimize join queries, including using appropriate join types, creating indexes, and considering using subqueries. Analyze queries to identify bottlenecks; use caching to reduce database load; optimize PHP code to minimize overhead.

How to use MySQL backup and restore in PHP? How to use MySQL backup and restore in PHP? Jun 03, 2024 pm 12:19 PM

Backing up and restoring a MySQL database in PHP can be achieved by following these steps: Back up the database: Use the mysqldump command to dump the database into a SQL file. Restore database: Use the mysql command to restore the database from SQL files.

How to insert data into a MySQL table using PHP? How to insert data into a MySQL table using PHP? Jun 02, 2024 pm 02:26 PM

How to insert data into MySQL table? Connect to the database: Use mysqli to establish a connection to the database. Prepare the SQL query: Write an INSERT statement to specify the columns and values ​​to be inserted. Execute query: Use the query() method to execute the insertion query. If successful, a confirmation message will be output.

How to use MySQL stored procedures in PHP? How to use MySQL stored procedures in PHP? Jun 02, 2024 pm 02:13 PM

To use MySQL stored procedures in PHP: Use PDO or the MySQLi extension to connect to a MySQL database. Prepare the statement to call the stored procedure. Execute the stored procedure. Process the result set (if the stored procedure returns results). Close the database connection.

How to fix mysql_native_password not loaded errors on MySQL 8.4 How to fix mysql_native_password not loaded errors on MySQL 8.4 Dec 09, 2024 am 11:42 AM

One of the major changes introduced in MySQL 8.4 (the latest LTS release as of 2024) is that the &quot;MySQL Native Password&quot; plugin is no longer enabled by default. Further, MySQL 9.0 removes this plugin completely. This change affects PHP and other app

How to create a MySQL table using PHP? How to create a MySQL table using PHP? Jun 04, 2024 pm 01:57 PM

Creating a MySQL table using PHP requires the following steps: Connect to the database. Create the database if it does not exist. Select a database. Create table. Execute the query. Close the connection.

Java framework security vulnerability analysis and solutions Java framework security vulnerability analysis and solutions Jun 04, 2024 pm 06:34 PM

Analysis of Java framework security vulnerabilities shows that XSS, SQL injection and SSRF are common vulnerabilities. Solutions include: using security framework versions, input validation, output encoding, preventing SQL injection, using CSRF protection, disabling unnecessary features, setting security headers. In actual cases, the ApacheStruts2OGNL injection vulnerability can be solved by updating the framework version and using the OGNL expression checking tool.

See all articles