scaffold not listing my colums from database

Well, you do have to write a *little* code :slight_smile:

<% form_for(@product) do |f| %>    <p><%= f.text_field :title %></p>    <p><%= f.text_area :description %></p>    <p><%= f.text_field :image_url %></p> <% end -%>

Or something like that. Only you know what fields you want to expose to the user and which controls you want to use for input.

It used to, but no longer. It also used to fill in the fields for the list (now index) method and show method. Not sure why the change.

You obviously have a nice new version of Rails and a slightly out of date book. That's what's great about this list. You catch up in a hurry.

You don't need to write any of that code as long as you add the
scaffold directive to your controller or use the scaffold generator.
If you generated a blank controller, make sure you add
scaffold :somemodel inside the controller class. This is not needed if
you used the scaffold generator.

-Bill

It definitely still does (thats what it's for?) and I just tested it.
Here is the documentation for scaffold:

http://api.rubyonrails.org/classes/ActionController/Scaffolding/ClassMethods.html#M000165

-Bill

There has been talk about removing dynamic scaffolding, and I'm not
sure what the status is. The generator is still around, but as you
observed (and I did a couple of days ago), the behavior has changed.
Side note: For stuff that's not public-facing, it's surprising how
long scaffolded code can last :slight_smile: I have an app that's been in
production since before Rails 1.0 and there's still some scaffold
code in it. Happy client because he got a great deal on the code I
didn't write.

Here's a search that may give you some insight into what Rails Core
is saying about scaffolding:

http://www.nabble.com/forum/Search.jtp? forum=13832&local=y&query=scaffold

He's running on a pretty new version of Rails, and that provides, essentially, scaffold_resource from the generator. Please see http://dev.rubyonrails.org/changeset/7429 for the changeset that recommends using the scaffold generator.

No, it is current for rails 1.2 and as long as you are running the 1.2
version, scaffold will create all of the fields except for
relationships. It will do this for list, create, edit, etc. What
happens when you call that controller's new action:

http://localhost:3000/products/new

I assume your controller is ProductsController and looks like this:

class ProductsController < ApplicationController   scafflod :product end

I just tested this on rails 1.2.5 / ruby 1.8.6 and it works as it
always has. If it's still not working, is there anything in your logs?
Can you create a product from the console?

-Bill

Ok, maybe this is a rails 2.0 thing, but I am running 1.2.6 (I said 1.2.5 earlier), and it still works fine for me? If you are running rails 2.0 edge, you should downgrade to 1.2.6 if you want to follow along with that book which is currently the latest book.

-Bill