Make CMD sensitive to use with MySQL?
- by acidzombie24
I have a cleanup scrip in a bat file and i wanted to do the below but the problem is i get a mysql error saying unknown database and showing it as testdb. I guess i can change my code testdb but i would like to know.
How do i have windows cmd use case sensitivity so i can execute queries properly instead of always in lower case?
mysql.exe -u root -q "drop database TestDB; create database TestDB;"