I have a problem with changing lower_case_table_names variable value in MySQL 5.6 ... I did all that says in Where to change the value of lower_case_table_names=2 on windows xampp.
The default value on my Windows 7 is '1'. I want to switch it to '2'.
Tried several ways, what I did is:
- Edited C:\Program Files\MySQL\MySQL Server 5.6\my-default.ini by adding lower_case_table_names = 2 to wherever I could (without # symbol ofc)
- Copied my-default.ini and pasted to the same directory, but renamed to my.ini
- Copied my.ini to \bin folder
- Restarted MySQL56 service couple times
Now, when I read "SELECT @@lower_case_table_names" it still says 1, and my db behaves like it is 1...
Any ideas?