I had two database, one on windows server, and one on linux server, I moved the database to the linux server, but I faced wit a problem, On windows when a made a selection foe example
SELECT * FROM tabledata
Worked fine.
but linux it's not working, because the original table names is tableData
Is there any way to configuration the mysql to case-insensitive?
A prime example of screwed up cross-plattform design. From the MySQL documentation on this point:
Fortunately, there is the lower_case_table_names configuration directive, which, when set to 2, would disable case sensitivity for comparisons.
Why not just rename the table?