On 28 April 2010 17:28, ES <[email protected]> wrote: > Is there a function that can be called on an object that returns a > hash of the colum names (i.e. attributes) of the object?
There's a few that might do what you want. Have a look at: http://api.rubyonrails.org/classes/ActiveRecord/Base.html Look particularly at: Model.content_columns Model.columns Model.column_names Model.columns_hash -- You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en.

