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

前端 未结 7 709
梦谈多话
梦谈多话 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:34

    I've tried what's been suggested here, i must inform that

    lower_case_table_names = 0
    

    doesn't work in xampp, it crashes MySQL service at the moment you restart it. Yet

    lower_case_table_names = 2
    

    didn't crash, and apparently worked... at least it allowed me to insert a db with camel case.

提交回复
热议问题