What does the
character-sets-diroption use in the MySQL configuration file ( my.ini )?As I understand it, the value of this parameter is the path to the folder with the set of encodings, and does this mean that other encodings that are not included in the folder will not be supported by the MySQL server?
For example, if I have the following parameter value set:
[mysqld]
character-sets-dir = "C: / Program Files / MySQL / MySQL Server 5.0 / share / charsets /"
And in the folder C: / Program Files / MySQL / MySQL Server 5.0 / share / charsets / there is no file with utf-8 encoding, then when inserting data, preceded by the command
/*!40101 SET NAMES utf8 */; Is the data saved in latin1 or some other default encoding, but not in UTF-8 ?