mysql 插入漢字 Incorrect string value 解決辦法

來源:互聯網
上載者:User

標籤:style   blog   color   os   io   使用   ar   資料   art   

項目開發的時候,由網頁表單提交的過來的中文字元,會報Incorrect string value: ‘\xF0\x90\x8D\x83\xF0\x90...‘ 異常;

原因是mysql的編碼造成,使用 show variables like ‘character%‘ 查看資料庫的編碼:

mysql> show variables like ‘character%‘    -> ;+--------------------------+--------------------------------------------------------+| Variable_name            | Value                                                  |+--------------------------+--------------------------------------------------------+| character_set_client     | latin1                                                 || character_set_connection | latin1                                                 || character_set_database   | latin1                                                 || character_set_filesystem | binary                                                 || character_set_results    | latin1                                                 || character_set_server     | latin1                                                 || character_set_system     | utf8                                                   || character_sets_dir       | /usr/local/mysql-5.1.63-osx10.6-x86_64/share/charsets/ |+--------------------------+--------------------------------------------------------+8 rows in set (0.00 sec)

 

網上找了些解決方案:修改欄位或者表的字元集為utf8

方案1,轉換需要插入漢字的資料表編碼為utf8

alter table sysadmin_article convert to character set utf8;Query OK, 16 rows affected (0.35 sec)Records: 16  Duplicates: 0  Warnings: 0

方案2,更改資料庫的編碼格式,再重建立表

alert database fruitdata character set utf8;

 

mysql 插入漢字 Incorrect string value 解決辦法

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.