I am using wamp server 2.0 on Windows XP. Whenever I create a table with some uppercases in name, it is converted to lowercase.
For example:
I create: UserInfo
phpmyadmin convert it to: userinfo
I am using ubuntu/phpmyadmin in office but this problem does exists there.
from where can I fix this. Thanks
There is a directive for forcing table names to lower case.
You want to set the lower_case_table_names value to 0.
You can read more about it from MySQL documentation here
I've tried what's been suggested here, i must inform that
doesn't work in xampp, it crashes MySQL service at the moment you restart it. Yet
didn't crash, and apparently worked... at least it allowed me to insert a db with camel case.
It was not phpmyadmin. Mysql did this.
p.s. It is a bad maner to use camelCase in databases. Use_underlines. :)
You need to find file my.ini in your mysql folder and change, or add this line at bottom:
lower_case_table_names = 2
In windows the default value for
lower_case_table_names = 1
.You need to change or add this value to my.ini file in your mysql folder..
If this line is not found, then add it under
[mysqld]
And then restart the wamp services, it will work :D
You must find file my.ini in your mysql folder and change, or add this line: