As you are installing MySQL for Windows, you'd want to fix the configuration bug on windows. By default, MySQL cripples all table names to lower case. This is the worst thing to do as a "work-around" to case sensitivity on Linux. The correct way to handle table names is case INsensitive, but keep the case as it is. To make MySQL get the tables right, add the following line to my.ini:
[mysqld]
lower_case_table_names=2
Do so
before you create any table, so directly after runing the installer.