テーブル名など識別子の大文字小文字の区別設定確認mysql> show variables like 'lower%'; +------------------------+-------+ | Variable_name | Value | +------------------------+-------+ | lower_case_file_system | OFF | | lower_case_table_names | 1 | +------------------------+-------+
設定変更/etc/my.cnf: lower_case_table_names = 1 参考http://dev.mysql.com/doc/refman/5.1-olh/ja/identifier-case-sensitivity.html |
|