Ruby on Rails Friday, November 26, 2010

I've found the solution:

class ProjectReport < ActiveRecord::Base
def total_hours
@attributes['total_hours']
end

def group_name
@attributes['group_name']
end

def project_type
@attributes['project_type']
end

def request_type
@attributes['request_type']
end
end

So I can access results from find_by_sql using something like
'accessors'.

--
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 rubyonrails-talk@googlegroups.com.
To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en.

No comments:

Post a Comment