pat.turner
2008-Sep-22 11:11 UTC
Ccreating methods on the fly / counting distinct field values
Hi,
I''m pretty new to ruby and rails, so apologies if this has been covered
before (I couldn''t find a thread on it).
I want to retrieve a count of records held in the DB for every distinct
value of an attribute.
E.g. given a class Address with a postcode field, I would like to retrieve
an array of ValueCount objects. The ValueCount object would hold the value
retrieved from the db and the number of records which hold it.
I''ve written a class specific method which does this:
selects all occurrences of an object with
ActiveRecord.find(:all, :select => "DISTINCT postcode")
then for each value issues a
ActiveRecord.count(:all, :conditions => {:postcode => postcode}) call.
I realise this is rather clumsy and could probably be done in a better way,
but it does work.
However, my problem is that I want to write a method to create this sort of
call on the fly.
E.g.
distinct_count :postcode
would create a distinct_count_postcode method which achieves all of the
above for the postcode field. I can then call this in any of my model
classes.
So, can anyone point me in the direction of a tutorial for creating methods
on the fly using symbols?
If anyone can show a better way to perform the ActiveRecord value_count
logic, that would be great too :-)
Thanks,
Pat
--
View this message in context:
http://www.nabble.com/Ccreating-methods-on-the-fly---counting-distinct-field-values-tp19605876p19605876.html
Sent from the RubyOnRails Users mailing list archive at Nabble.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
rubyonrails-talk-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org
To unsubscribe from this group, send email to
rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org
For more options, visit this group at
http://groups.google.com/group/rubyonrails-talk?hl=en
-~----------~----~----~----~------~----~------~--~---
Erol Fornoles
2008-Sep-22 11:15 UTC
Re: Ccreating methods on the fly / counting distinct field values
On Sep 22, 7:11 pm, "pat.turner" <pat.tur...-iOXn2gIwN7TQXOPxS62xeg@public.gmane.org> wrote:> However, my problem is that I want to write a method to create this sort of > call on the fly. > E.g. > distinct_count :postcode > would create a distinct_count_postcode method which achieves all of the > above for the postcode field. I can then call this in any of my model > classes. > > So, can anyone point me in the direction of a tutorial for creating methods > on the fly using symbols?Look for tutorials dealing with mixins or plugins. --~--~---------~--~----~------------~-------~--~----~ 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-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org 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 -~----------~----~----~----~------~----~------~--~---