Topic: rails scaffold keeps crashing webrick

I am brand new to Ruby on Rails and am just trying out my first application so bear with me. I have a mysql database on localhost with a few tables already filled with data. I am running on win7 x64 with Ruby 1.8.7 and rails 2.3.8.

My problems is as follows:
I run rails -d mysql myproject, and my project folders are created
I edit database.ymf file with the correct information of mysql db
Then I run ruby script/generate scaffold Club name:string email:string
It runs without errors, I then kick up the server ruby script/server

It all appears fine and when I head to http://localhost:3000 I get a 'welcome to ruby' page. The problem is when I go to http://localhost:3000/clubs  (clubs is name of my controller and is the name of the table in the db) two things happen, I get a complete crash from webrick and the server stops or I get ArgumentError in ClubsController#index.

Any help is greatly appreciated.

Re: rails scaffold keeps crashing webrick

I think I have found a solution as described here:
http://forums.aptana.com/viewtopic.php?t=7563

Basically you download a dll file
http://instantrails.rubyforge.org/svn/t … bmySQL.dll

Copy it to your ruby bin c:\ruby\bin and restart your server