nvarchar - A ideal data type for long utf8 strings in mysql -


Is it true that VARCHAR type mysql only suppory 255 character data length? If it is true, what type of data type for UTF8 strings is useful for long texts? I am using the utf8_persian_ci datatype.

Note that there is a problem with the utf8_persian_ci in the text datatype.

VARCHAR in all current versions of MySQL is 65535.

In the earlier versions of MySQL, the maximum length of

, VARCHAR was 255, but this ancient history (where Ancient is before March 2005).

The CHAR data type is still a limit of 255 characters.


Comments

Popular posts from this blog

c# - sqlDecimal to decimal clr stored procedure Unable to cast object of type 'System.Data.SqlTypes.SqlDecimal' to type 'System.IConvertible' -

Calling GetGUIThreadInfo from Outlook VBA -

Obfuscating Python code? -