Skip to main content
January 13, 2023
Question

CHARACTER SET utf8mb3

  • January 13, 2023
  • 4 replies
  • 0 views

Hi Experts,

 Can someone help me to understand why Appian sets the CHARACTER SET as utf8mb3 for the varchar column even though we have CHARACTER SET utf8mb4,

Using Appian 22.4 cloud instance 

Thanks,

Gaurav

4 replies

romulor0001
April 24, 2023

Hi [mention:09cf3a8fdee34f5680a06848c77839c4:e9ed411860ed4f2ba0265705b8793d05],

Could you please share the evidence, the difference between database value and Appian value? with the specs. Thanks

Rómulo

mallepup3914
April 24, 2023

Appian uses the utf8mb4 character set by default for its database connections.

One possibility is that the schema was generated using an earlier version of Appian that defaulted to utf8mb3 instead of utf8mb4.

Another possibility is that there may be some compatibility issues with certain MySQL versions that prevent the use of utf8mb4. In this case, Appian may fallback to using utf8mb3 instead.

venkannababuk2810
April 25, 2023

Hi Gaurav,

utf8mb3 supports only characters in the Basic Multilingual Plane (BMP). utf8mb4 additionally supports supplementary characters that lie outside the BMP


For all character data types (CHAR, VARCHAR, and the TEXT types), the maximum number of characters that can be indexed is less for utf8mb4 columns than for utf8mb3 columns.

May 18, 2023

Thank you sir.