BoardiesITSolutions / Android-MySQL-Connector

Native MySQL Connector for Android
MIT License
51 stars 15 forks source link

add utf8mb4 supporting #24

Closed wantobe closed 3 years ago

wantobe commented 3 years ago

using utf8mb4 encoding Chinese, just printed as '???'

boardy commented 3 years ago

Hi, unfortunately the library currently only support utf8 not utf8mb4. Chinese characters require an extra bit of storage which utf8 doesn't have so it can't decode correctly which is why you are seeing the 3 question marks.

Thanks Chris