I currently have run into a problem with case sensitivity in table names for a MySQL database. The site is being built locally on a Windows box, and I've noticed that any time I create a table, the table name winds up being forced to lowercase.
This isn't a problem under Windows, but after using mysqldump to create an sql script which I then upload to the main server and execute, the table names remain all lowercase. This obviously causes a problem on the server, because *nix is case sensitive, and henceforth my scripts no longer like to function properly.
I'm wondering if there is a way within MySQL to force case sensitive table names. Anyone know if this is possible?