There are now other good options for the database you use with rails. In fact, the default database, at least for development is SQLite. A big advantage of SQLite is that it is already installed on the typical linux system used to host rails and has negligible setup. And migrating to MySQL for a production system is no big deal.
Here is the recommended setup of a rails application with SQLite:
$ rails my_app $ cd my_app $ ./script/generate scaffold User login:string password:string first_name:string last_name:string $ rake db:migrate $ ./script/serverThe switch to MySQL is accomplished via:
rails my_app -d mysql
Ruby on Rails notes / [email protected]