The default settings provided of MySQL enforce a strict lowercase conversion for all the table and database names.
To allow camel case in mysql we need to made following changes in mysql configuration file.
lower_case_table_names
It can easily be added to the MySQL my.ini file, usually found in the following folder:
C:\xampp\mysql\bin
The easiest way to take care of this is to add the following to your my.ini file under the [mysqld] section.
And Restart Xampp.
To allow camel case in mysql we need to made following changes in mysql configuration file.
lower_case_table_names
It can easily be added to the MySQL my.ini file, usually found in the following folder:
C:\xampp\mysql\bin
The easiest way to take care of this is to add the following to your my.ini file under the [mysqld] section.
[mysqld]
...
lower_case_table_names = 2
...
lower_case_table_names = 2
And Restart Xampp.
Comments
Post a Comment