On Fri, Dec 19, 2008 at 11:19 AM, Ryan Ororie <[email protected]> wrote:
> I have tried a ton of different things here. I know mySQL is installed > and running in one place or another. I don't know how to tell my rails > app with the hell to do about it. I > When I try to do something with the database here is what I run into. > > bio4054059:depot rmorourk$ rake db:migrate > (in /Users/rmorourk/Sites/depot) > rake aborted! > Unknown database 'depot_development' So you haven't created that database yet. No mystery there. :-) > when I am in the terminal and I want to do something with the database, > like; > > bio4054059:depot rmorourk$ mysql -uroot depot_development > -bash: mysql: command not found Which simply means MySQL isn't in your PATH. You need to find where the MySQL executables are installed and add that directory to your path. Or create symlinks to, say, /usr/local/bin. This is just basic *nix stuff. HTH, -- Hassan Schroeder ------------------------ [email protected] --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en -~----------~----~----~----~------~----~------~--~---

