Detailed steps to store emoji expressions in MySQL

Detailed steps to store emoji expressions in MySQL

Caused by: java.sql.SQLException: Incorrect string value: '\xF0\x9F\x94\xA5' for column An error occurs when storing Emoji expressions in Mysql.

iOS emoticons (emoji emoticons), although this emoticon is utf8 encoded, one character takes up 4 bytes, while MySQL utf8 encoding can only store 3-byte characters. In MySQL 5.6, you can set the encoding to utf8mb4, which is a superset of utf8.

1. Modify the MYSQL character set

Mysql sets the character encoding set to utf8mb4, and the corresponding database, table, and field are set to utf8mb4. Note that if the utf8 encoding set of an existing table is changed to utf8mb4, then the database, table, and field must be set and checked once. If only the database is changed, the corresponding table and field will not change, and the same is true for changing the table. You may also need to restart the database if you changed the configuration.

character_set_server=utf8mb4

2. Upgrade JDBC

Lower versions of JDBC will display garbled characters, garbled expressions, and even garbled Chinese characters.

The following are some corresponding situations of JDBC versions. The details are as follows: JDBC version supports EMOJI. The picture is found on the Internet. My 5.1.6 test inserts and displays Chinese and Emoji expressions normally.

3. Inherit the server configuration jdbc:mysql://xxx.xxx.xxx.xxx:3306/dbwww58com_chrcsm?useUnicode=true&characterEncoding=UTF-8&autoReconnect=true. The parameters after the connection address are set to UTF-8 or can be automatically recognized. If not, try to remove the bold part to let the connection automatically recognize the server configuration. The specific situation depends on the JDBC version. Inherit the server configuration jdbc:mysql://xxx.xxx.xxx.xxx:3306/dbwww58com_chrcsm?useUnicode=true&characterEncoding=UTF-8&autoReconnect=true. The parameters after the connection address are set to UTF-8 or can be automatically recognized. If not, try to remove the bold part to let the connection automatically recognize the server configuration. The specific situation depends on the JDBC version.

4. Set the init_connect parameter of MYSQL

After setting, you can verify it by showing variables like 'init_connect';, as shown in Figure 2 init_connect parameter query:

5. The encoding set is set in the code. Perhaps it is because of the JDBC version. I use this method, and both insertion and query can proceed normally. connection.prepareStatement("set names utf8mb4").executeQuery();Then insert it through connection.prepareStatement. The encoding set is set in the code perhaps because of the JDBC version. I use this method, and both insertion and query can proceed normally. connection.prepareStatement("set names utf8mb4").executeQuery();Then insert it through connection.prepareStatement.

You may also be interested in:
  • Reasons and solutions for failure to insert emoji expressions in MySQL
  • Analysis of the solution to MySQL's inability to store emoji expressions
  • How to deal with errors in MySQL's emoji table storage [change encoding to utf8mb4]
  • Analysis of solutions to the problem that MySQL cannot store Emoji expressions
  • Solution to the problem of failure to insert emoji expressions into MySQL
  • How to enable Java backend MySQL database to support emoji expressions
  • Tutorial on how to set up MySQL to store emoji characters
  • How to insert Emoji expressions into MySQL

<<:  Linux (CentOS7) installs Tomcat and sets Tomcat as a startup item (taking tomcat8 as an example)

>>:  WeChat Mini Program to Implement Electronic Signature

Recommend

A brief discussion on using virtual lists to optimize tables in el-table

Table of contents Preface Solution Specific imple...

Pure CSS to add style to select (no script) implementation

Change the default style of select, usually throug...

HTML+CSS to achieve drop-down menu

1. Drop-down list example The code is as follows:...

Nginx stream configuration proxy (Nginx TCP/UDP load balancing)

Prelude We all know that nginx is an excellent re...

Analyze the usage and principles of Vue's provide and inject

First, let's talk about why we use provide/in...

MySql learning day03: connection and query details between data tables

Primary Key: Keyword: primary key Features: canno...

3 ways to add links to HTML select tags

The first one : Copy code The code is as follows: ...

MYSQL string forced conversion method example

Preface Since the types of the same fields in the...

Detailed explanation of the process of zabbix monitoring sqlserver

Let's take a look at zabbix monitoring sqlser...

How to connect to MySQL database using Node-Red

To connect Node-red to the database (mysql), you ...

How does MySQL connect to the corresponding client process?

question For a given MySQL connection, how can we...

React implements multi-component value transfer function through conetxt

The effect of this function is similar to vue的pro...

Solution to ERROR 1054 (42S22) when changing password in MySQL 5.7

I have newly installed MySQL 5.7. When I log in, ...

jQuery plugin to achieve carousel effect

A jQuery plugin every day - jQuery plugin to impl...