I have a table called category and i want to show only the records where
"status = A" in my list.erb

currently, my list.erb shows all records from category table.
but, i would like to show only the records where status = 'A'

for example:
select * frm category where status = 'A'

the idea behind this is, i have this status column to show only the
active records.
This status flag accepts,
"A" for active,
"I" for inative and
"R" for "Requested newly, but not yet processed".
.. and may be others as per the futurre needs.

so how can i apply this filter of where status = 'A' in my controller.

  def list
      @categories=Category.find_all_categories
        end



- thanks,
radha
-- 
Posted via http://www.ruby-forum.com/.

-- 
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.

Reply via email to