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
The img tag introduces the image Because react ac...
I have encountered a problem. When testing the ed...
1. Connect Centos7 under VMware and set a fixed I...
This article shares the specific code of Vue to a...
In order to centrally manage the images we create...
Table of contents Install vim plugin manager Add ...
MySQL service 8.0.14 installation (general), for ...
Mysql limit paging statement usage Compared with ...
Preface: I believe that those who need to underst...
Official website address: https://dev.mysql.com/d...
Compared with fdisk, parted is less used and is m...
CentOS 8 has been released for a long time. As so...
Table of contents No slots Vue2.x Slots With slot...
Table of contents Preface Why do we need to encap...