-
Website
http://www.emadibrahim.com -
Original page
http://www.emadibrahim.com/2008/04/25/ruby-on-rails-for-a-net-developer/ -
Subscribe
All Comments -
Community
-
Top Commenters
-
danatkinson
1 comment · 1 points
-
Korayem
3 comments · 1 points
-
dukon21
1 comment · 1 points
-
Mladen Mihajlovic
1 comment · 1 points
-
Chad Myers
3 comments · 1 points
-
-
Popular Threads
-
Select Random Records Using Nhibernate
3 weeks ago · 4 comments
-
Select Random Records Using Nhibernate
I'm actually trying to convince my company to switch from .NET to Rails. It's going to be tough, but going to be SO worth it in the end.
Good luck!
welcome to Rails-land! :) A few things to consider:
1) When creating a project, you can specify a "-d mysql" option in order to have the config/database.yml file filled with MySQL specific information, given that the current default is SQLite.
2) You don't have to manually create the databases. Simply run: rake db:create:all from your project. For a complete list of available tasks, run: rake -T
3) You may want to consider starting to use migrations, rather than defining the tables directly through SQL or MySQL tools.
Best of luck,
Antonio
@Antonio great tips. thanks...
One thing that sucks so far has been the documentation.