Mysql server does not support 4-byte encoded utf8 characters

前端 未结 8 2108
逝去的感伤
逝去的感伤 2020-12-03 23:24

I\'ve received a server error running a Data transfer component from Sql Server to MySql db. The error message reads as follows:

[MySql][ODBC 5.1 Driver][mys

8条回答
  •  既然无缘
    2020-12-04 00:18

    "4-byte encoded UTF-8 characters" refers to characters with code point > 0xFFFF, i.e., ones whose code points don't fit within 16 bits (are outside the basic multilingual plane (BMP)). Many older systems don't support characters outside the BMP.

    Characters outside the BMP are usually CJK characters; I don't know if that's the case with you here. :-)

提交回复
热议问题