up vote 15 down vote favorite
3
share [g+] share [fb]

I want to create my Rails application with MySQL, because I like it so much. How can I do that in the latest version of Rails?

link|improve this question
feedback

12 Answers

up vote 18 down vote accepted

If you already have a rails project, change the adapter in the config/database.yml file to mysql and make sure you specify a valid username and password, and optionally, a socket:

development:
  adapter: mysql
  database: db_name_dev
  username: koploper
  password:
  host: localhost
  socket: /tmp/mysql.sock
link|improve this answer
feedback

Normally, you would create a new Rails app using

rails ProjectName

To use MySQL, use

rails -d mysql ProjectName
link|improve this answer
feedback

for rails 3 use $rails new projectname -d mysql

link|improve this answer
feedback
rails -d mysql ProjectName
link|improve this answer
feedback

If you are using rails 3 or greater version

rails new -d mysql your_project_name

if you have earlier version

rails new -d mysql your_project_name

So before you create your project you need to find the rails version. that you can find by

rails -v
link|improve this answer
feedback

If you are creating a new rails application you can set the database using the -d switch like this:

rails -d mysql myapp

Its always easy to switch your database later though, and using sqlite really is easier if you are developing on a Mac.

link|improve this answer
feedback
$ rails --help 

is always your best friend

usage:

$ rails new APP_PATH[options]

also note that options should be given after the application name

rails and mysql

$ rails new project_name -d mysql

rails and postgresql

$ rails new project_name -d postgresql
link|improve this answer
feedback

I installed rails 2.0 a couple of days ago in my ubuntu server and it chose mysql as default.

link|improve this answer
feedback

giancarlo -- remember this Q&A when you upgrade from Rails 2.0 to Rails 2.0.2 -- that was the version where SQLite became the default database for a new application instead of MySQL.

Plus, if you don't have a compelling reason to use version 2.0, I'd recommended version 2.1. It's been out since June, is stable, and of course has nice new features. Time zone support and named scopes are my favorites.

link|improve this answer
feedback

para usar o mysql por padrao o "d" é em maiusculo rails -D mysql 'project_name'

link|improve this answer
feedback

In Rails 3, you could do

$rails new projectname --database=mysql

link|improve this answer
feedback

Rails wiki always good for the very first layer configuration information.

http://newwiki.rubyonrails.org/database-support/mysql

link|improve this answer
rails wiki is unmaintained and outdated – knoopx Jul 8 '10 at 11:40
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.