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?
|
feedback
|
|
If you already have a rails project, change the adapter in the | |||
|
feedback
|
|
Normally, you would create a new Rails app using
To use MySQL, use | |||
|
feedback
|
|
If you are using rails 3 or greater version
if you have earlier version
So before you create your project you need to find the rails version. that you can find by
| |||
|
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. | |||
|
feedback
|
is always your best friend usage:
also note that options should be given after the application name rails and mysql
rails and postgresql
| ||||
|
feedback
|
|
I installed rails 2.0 a couple of days ago in my ubuntu server and it chose mysql as default. | |||
|
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. | |||
|
feedback
|
|
para usar o mysql por padrao o "d" é em maiusculo rails -D mysql 'project_name' | ||||
|
feedback
|
|
Rails wiki always good for the very first layer configuration information. | |||
|
feedback
|