How to force case sensitive table names?

前端 未结 6 1789
花落未央
花落未央 2020-11-30 03:15

I\'m working on a MySQL database in windows.

I must move it into a Linux environment. MySQL database contains a lot of tables and stored procedures which are CASE

6条回答
  •  星月不相逢
    2020-11-30 03:32

    Read all this: http://dev.mysql.com/doc/refman/5.0/en/identifier-case-sensitivity.html

    Then add this system variable to the server section, [mysqld], of my.ini and restart mysql:

    /my.ini: lower_case_table_names=2

提交回复
热议问题