Reputation: 1273
In my machine (Windows 10) two MySQl versions are needed. The Project "A" is running in XAMPP. When I've started my second project, I've stopped the first SQL services and installed MySQL 5.7. In that I need to set lower_case_table_names = 2
for the case sensitive method.
I google it, they say:
[drive]\xampp\mysql\bin\my.ini
# The MySQL server [mysqld]
lower_case_table_names = 2
I know that it's for XAMPP only.
But I've installed MySQL in Program Files
. Here I couldn't able to see C:\Program Files\MySQL\MySQL Server 5.7\bin\my.ini
files. Then where should I set the lower_case_table_names = 2
value?
Thanks in advance.
Upvotes: 0
Views: 518
Reputation: 1073
In XAMPP use the "Control Panel" to find the mysql.ini
config file.
In a regular Windows install of MySQL the .ini
file sits in C:\ProgramData\MySQL\MySQL Server
.
Upvotes: 1