Why my tables' names are converted into lowercase in phpmyadmin?

前端 未结 7 697
梦谈多话
梦谈多话 2020-12-25 12:03

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         


        
相关标签:
7条回答
  • 2020-12-25 12:49

    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]

    lower_case_table_names = 0
    

    And then restart the wamp services, it will work :D

    0 讨论(0)
提交回复
热议问题