Search Results

0
votes

Contest ranking question - how to rank entries in multiple categories?

It depends on what you're trying to accomplish. However, it seems to me that the social media score is pointless. The net result is that someone bothered to watch and/or rate the video on YouTube. …
2
votes

Custom SQL query without Corresponding Table

You can grab a db connection directly from ActiveRecord::Base, but it's not as useful as extending AR::Base, because helpful methods like sanitize_sql are protected. class ComplexQu …
9
votes

when to ditch active record?

It's more important to be pragmatic than to worry about maintaining "Rails purity." I love named scopes, associations, and all of the magic that goes with them. Of course, I prefer those to running …
7
votes

how do I write that join query with ActiveRecord?

The assumption here is that you have something that looks like this: class Band < ActiveRecord::Base has_many :memberships has_many :users, :through => :memberships end c …
0
votes

ActiveRecorded associated model back reference

...given an actor instance obtained through the actors association... If you're using the actors association, you already have the movie object. …
0
votes

How can I make a cascade deletion in a one_to_many relatonship in Rails ActiveRecord?

What you're looking for is the :dependent => :destroy option on has_many. …
1
vote

ActiveRecord find with association details

Named scopes are your friend here. For example: class Game < ActiveRecord::Base has_and_belongs_to_many :users named_scope :for_status, lambda {|s| {:conditions => …
2
votes

validates_uniqueness_of passes on nil or blank (without allow_nil and allow_blank)

You are mistaken about the default behavior. From the docs: :allow_nil - If set to true, skips this validation if the attribute is nil (default is false). :allow_blank - If set to …
3
votes

Automatically set child.parent_id when parent.children<< child ?

Some code from you would be appropriate, since what you're asking should be working automatically. class Parent < ActiveRecord::Base has_many :children end class Child < Ac …