0

rake aborted! The driver encountered an error: com.mysql.jdbc.exceptions.MySQLSyntaxErrorException: Unknown database 'dbapp_development'

what should be done?

i've created the database using rake db:create

jvnill
  • 28,218
  • 4
  • 78
  • 83
  • interesting. i've deleted my answer since i have no idea what's your issue after finding out that you've created the db through `rake db:create`. what rake job we're you trying to run? – jvnill Mar 12 '13 at 08:34

1 Answers1

0

Although you created the db by doing rake db:create, the creation of database has failed silently.

In this case you need to create the database manually just like I did going into mysqlyog or mysql workbench or as what you got. This is the known bug and is discussed in knowledge base.

My God
  • 21,961
  • 23
  • 93
  • 166