views:

48

answers:

2

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

A: 

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

NebuSoft
in which file I will set lower_case_table_names to 0.
Awan
I updated my answer to give a better link. It's a system variable that you set. The MySQL documentation can tell you how.
NebuSoft
A: 

It was not phpmyadmin. Mysql did this.

p.s. It is a bad maner to use camelCase in databases. Use_underlines. :)

Random
Hmm... why is that?
Doug
because almost all databases does not make difference between lower and upper cases.
Random