INSERT INTO test(`name`) VALUES("😥")
> 1366 - Incorrect string value: '\xF0\x9F\x98\xA5' for column 'name' at row 1
> 时间: 0.006s
UTF-8 是不支持表情的,所有要将编码改为 utf8mb4
修改步骤
- 修改mysql数据库的编码为uft8mb4
- 修改数据表的编码为utf8mb4
- 修改连接数据库的连接代码
INSERT INTO test(`name`) VALUES("😥")
> 1366 - Incorrect string value: '\xF0\x9F\x98\xA5' for column 'name' at row 1
> 时间: 0.006s
UTF-8 是不支持表情的,所有要将编码改为 utf8mb4
修改步骤
本文标题:1366 - Incorrect string value: &
本文链接:https://www.haomeiwen.com/subject/szhuhqtx.html
网友评论