Не могу сменить кодировку mysql на UTF-16LE

Я пытался сделать кодировку utf-16le в бд, но что-то идет не так:

mysql> set character set utf16le;
ERROR 1231 (42000): Variable 'character_set_client' can't be set to the value of 'utf16le'

но в character set эта и многие другие кодировки есть

mysql> show character set;
+----------+-----------------+-------------------+--------+
| Charset  | Description     | Default collation | Maxlen |
+----------+-----------------+-------------------+--------+
| utf16    | UTF-16 Unicode  | utf16_general_ci  |   4    |
| utf16le  | UTF-16LE Unicode| utf16le_general_ci|   4    |
+----------+-----------------+-------------------+--------+

Ответы (0 шт):