Rails & mysql

Hello! It's possible to run mySql whit rails this days? Pleas tel me all process on windows xp!

It's one of the databases I run, though on various Linux flavors. Just update your database.yml

Try these:

http://dev.mysql.com/tech-resources/articles/mysql_intro.html http://dev.mysql.com/doc/refman/5.0/en/tutorial.html

HTH, Richard

Yep it is, however as of Rails 2.x it is no longer the default database used when creating a new project. To use MySQL when creating a new project just do this at the command line...

rails -d mysql MyProject

the "-d mysql" part will tell Rails that you want to use MySQL instead of the new default, which SQLite3. From there, everything is the same.

--Cory

Thanks a lot!!!

gem install mysql, rails -d mysql MyProject and space between password:(and) PASSWORD,

did it the job! thanks again, Regards!