美文网首页
1366 - Incorrect string value: &

1366 - Incorrect string value: &

作者: tingshuo123 | 来源:发表于2018-12-12 09:54 被阅读4次
    INSERT INTO test(`name`) VALUES("😥")
    > 1366 - Incorrect string value: '\xF0\x9F\x98\xA5' for column 'name' at row 1
    > 时间: 0.006s
    

    UTF-8 是不支持表情的,所有要将编码改为 utf8mb4
    修改步骤

    1. 修改mysql数据库的编码为uft8mb4
    2. 修改数据表的编码为utf8mb4
    3. 修改连接数据库的连接代码

    相关文章

      网友评论

          本文标题:1366 - Incorrect string value: &

          本文链接:https://www.haomeiwen.com/subject/szhuhqtx.html