> how to change sqlite3 to mysql..??
1) install MySQL
2) install mysql gem
3) edit config/database.yml appropriately
4) if you've already started development, run
rake db:schema:load
to install your tables
HTH,
--
Hassan Schroeder ------------------------ hassan.s...@gmail.com
rails myproject -d mysql
--
Posted via http://www.ruby-forum.com/.
Yes, SQLite3 is the current default; if you want to use something else
you need to follow the process I outlined.
HTH,
--
Hassan Schroeder ------------------------ hassan.s...@gmail.com
rails -d mysql applicationname
you can able to work with mysql.
> Can u tell me,? which editor is best for Ruby on Rails..apps??
The one you're most proficient with :-)
At various times I use jEdit, NetBeans and vi for Rails development,
all reasonably cross-platform so I don't have to switch mental gears
too much going between Linux and Mac. YMMV,