Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Let's say I have a Car and Driver dbs but for some records there is no driver for a car. How do I map the relation?

Here's the code I got and it causes an error of "NoMethodError: undefined method `each' for nil:NilClass"

class Car < ActiveRecord::Base 
  has_one :driver, :foreign_key  => :dr_code, :primary_key  => :ca_master_code
end

class Driver < ActiveRecord::Base
  belongs_to :car, :foreign_key  => :dr_code, :primary_key  => :ca_master_code
end

Please advise.

share|improve this question
Btw, is there any reason you're not following the Rails column-naming convention? – Saurabh Nanda Mar 27 '12 at 19:50
I'm working off of legacy db. – oprogfrogo Mar 27 '12 at 20:15

2 Answers

It's assumed that nil in this case indicates that there's no driver there. This isn't a db design issue.

If a car without a driver is a valid case (as opposed to a mistake in the creation of the records), then just handle the nil case.

share|improve this answer
Thanks for the reply. I was expecting Active Record to return those without a driver as nil but instead it throws an exception which I'm unable to rescue. Doesn't rails have a 'has_one_or_none' type of relation? – oprogfrogo Mar 27 '12 at 19:54
Well, you're calling .each on a nil object, which is always going to throw an exception. You don't need to rescue from that; simply check if it's nil before trying to call each on it. – normalocity Mar 27 '12 at 21:01

Actually, Rails is doing this perfectly fine. I'm assuming you're calling each on car.driver. Because the car does NOT have a driver, car.driver is nil and nil.each barfs.

share|improve this answer
Btw, why would you be calling each on a has_one relationship? – Saurabh Nanda Mar 27 '12 at 19:53
Each is being called I believe due to performing a 'find_all' with an :include in the query. Car.find_all_by_ca_active('Y', :include => [:driver]). Just executing that query in console gives back that error. What am I doing wrong here? – oprogfrogo Mar 27 '12 at 20:17
What's the output of Car.find_all_by_ca_active('Y') without the :include ? – Saurabh Nanda Mar 27 '12 at 20:33

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.