5

This question is quite simple but I have run into the problem a few times.

Let's say you do something like:

cars = Vehicle.find_by_num_wheels(4)

cars.each do |c|
  puts "#{c.inspect}"
end

This works fine if cars is an array but fails if there is only one car in the database. Obviously I could do something like "if !cars.length.nil?" or check some other way if the cars object is an array before calling .each, but that is a bit annoying to do every time.

Is there something similar to .each that handles this check for you? Or is there an easy way to force the query result into an array regardless of the size?

4 Answers 4

12

You might be looking for

cars = Vehicle.find_all_by_num_wheels(4)

The dynamic find_by_ methods only return one element and you have to use find_all_by_ to return multiple.

Sign up to request clarification or add additional context in comments.

Comments

2

If you always want all of the cars, you should use find_all instead:

cars = Vehicle.find_all_by_num_wheels(4)

You could also turn a single Vehicle into an array with:

cars = [cars] unless cars.respond_to?(:each)

Comments

1

You can do this to get arrays everytimes :

cars = Vehicle.find(:all, :conditions => {num_wheels => 4})

I don't think that you have a loop that will check if the object is an array.

Another solution could be:

for i in (1..cars.lenght)
  puts cars[i].inspect
end

(haven't tested, it might break to test the lenght on a string. Let me know if it does)

Comments

1

Named scoped version for your problem

Vehicle.scoped(:conditions => { :num_wheels => 4 } ).each { |car| car.inspect }

1 Comment

I think that would be an anonymous scope, seeing as how you didn't name it. Scopes are a good answer to this, though.

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.