Failure Scenario When calling JDBC to insert emoji expressions into the MySQL database, an exception Cause of failure A character in MySQL's utf8 encoding is at most 3 bytes, but an emoji expression is 4 bytes, so utf8 does not support the storage of emoji expressions. However, utf8mb4, a superset of utf8, can have a maximum of 4 bytes per character, so it can support the storage of emoji expressions. Let’s take a look at the detailed introduction. Solution 1. Modify the database, table, and column character sets Modify the database character set ALTER DATABASE database name CHARACTER SET = utf8mb4 COLLATE = utf8mb4_general_ci; Modify the table character set ALTER TABLE table name CONVERT TO CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci; Modify the column character set ALTER TABLE table name CHANGE field name field name the original data type of the field CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci; The above three options can be modified according to your actual situation; 2. View MySQL configuration variables SHOW VARIABLES WHERE Variable_name LIKE 'character_set_%' OR Variable_name LIKE 'collation%'; Note whether the value of the character_set_server variable is equal to utf8mb4. If not, see step 3. 3. Modify the mysql configuration file Here mysql is installed under centos, the configuration file name is my.cnf, and the path is based on the directory where you installed it. vim /etc/my.cnf /etc/mysql/my.cnf my.cnf Find character_set_server, set its value to utf8mb4, save and exit; try to insert again to see if there is an error; if there is an error, you may need to restart the MySQL service service mysqld restart Summarize The above is the full content of this article. I hope that the content of this article will have certain reference learning value for your study or work. If you have any questions, you can leave a message to communicate. Thank you for your support for 123WORDPRESS.COM. You may also be interested in:
|
<<: Solution to forgetting the password of the pagoda panel in Linux 3.X/4.x/5.x
>>: Vue uses better-scroll to achieve horizontal scrolling method example
When developing a website function, the session c...
Problem description: When phpstorm's SFTP hos...
1. Download related tools and images Download Lin...
The animation part of CSS will be blocked by JS, ...
I believe that students who have learned about th...
Just as the title says. The question is very stran...
This article shares the specific code for JavaScr...
The semantics, writing style, and best practices ...
Preface Everyone knows that the partition field m...
In the previous article, we wrote about how to de...
Rancher deployment can have three architectures: ...
Effect: CSS style: <style type="text/css&...
This article example shares the specific code of ...
Organize the MySQL 5.5 installation and configura...
1. Usage: (1) EXISTS usage select a.batchName,a.p...