Hello! It's possible to run mySql whit rails this days? Pleas tel me all process on windows xp!
on 19.08.2008 15:31
on 19.08.2008 15:52
It's one of the databases I run, though on various Linux flavors. Just update your database.yml On Aug 19, 8:31 am, Zoran Jovanovski <rails-mailing-l...@andreas-
on 19.08.2008 15:54
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 On Aug 19, 9:31 am, Zoran Jovanovski <rails-mailing-l...@andreas-
on 19.08.2008 16:09
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 On Aug 19, 9:31 am, Zoran Jovanovski <rails-mailing-l...@andreas-
on 19.08.2008 17:03
Thanks a lot!!! gem install mysql, rails -d mysql MyProject and space between password:(and) PASSWORD, did it the job! thanks again, Regards!