i'm using AWS binami Ubuntu 14.04 and mysql 5.6.29. i was created database BloodDonarApp but after some day when using show databases command its listing databases but while i'm use database it showing ERROR 1049 (42000): Unknown database 'blooddonarapp' below i mentioned my terminal result. For this any solution is there. Thanks for advance.
mysql> show databases;
+--------------------+
| Database |
+--------------------+
| information_schema |
| ATM |
| BloodDonarApp |
| FixMyRide |
| NEG |
| NVgoods |
| PMS |
| Translogix |
| kishore |
| mysql |
| performance_schema |
| sample |
| test |
| vasanth |
+--------------------+
14 rows in set (0.00 sec)
mysql> use BloodDonarApp;
ERROR 1049 (42000): Unknown database 'blooddonarapp'
mysql>
Solution:
MySQL transform schema name to lower case and then compare with existing schemes.
Those steps will fix your problem.
Thanks