Hi, I have column named "summary" (tinytext, utf8_turkish_ci). I know it can store 255 byte also 255 chars. But if i use unicode chars like Ç, Ö, Ü storage capacitiy naturally decreasing. If my visitor enter 250 chars long unicode text then last chars are erasing. My summary column will be always 250 chars long. What can i do ? Thanks.
|
|
You could turn it into a |
||
|
|
|
UTF-8 is variable length encoding. A char can be encoded into 1 to 4 bytes (theoretically limit is 6 but I haven't encountered it yet). If you are dealing with Turkish only, only 2 bytes is needed for each char. So you will need a column size of 500 bytes to support 250 chars so you should use something like |
||
|
|
