Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm trying to select a collection of objects using ActiveRecord by the index in the array.

I know I can select Item.first or Item.last or single or range. But I want to update an arbitrary group by the index of their position in the array.

collection = Item.all.to_a
collection[3,5,9,11]

Is this possible?

Thanks in advance...

-- edit --

Thanks to tokland's help, I was able to get it to work perfect.

In case anyone else wants to do something similar, here is what I did:

yesterday = Time.now - 1.day
i = Item.all
new_items = i.values_at(1,3,5,10,11,14,18)
new_items.each{ |e| e.update_attributes(:published_at => yesterday) }
share|improve this question

2 Answers

up vote 1 down vote accepted

If you mean indexes in an array (not IDs):

collection.values_at(3, 5, 9, 11)
share|improve this answer
Thanks tokland, This does work! I'm trying to update attributes on a collection for testing. is this the best way to get at it? – Adam Oct 25 '11 at 20:13
Actually, I believe I can't update attributes on an array. I think I need to do an each. I'll keep working at it. Thanks again tokland! – Adam Oct 25 '11 at 20:16
@Adam, you should show more code to help you. – tokland Oct 25 '11 at 20:24
Thanks tokland. I got it working, and provided the code in my edit above... (hopefully that was the right place to do so) – Adam Oct 25 '11 at 20:41

If i properly understand, you need

Item.find([3,5,9,11])

This is how you can find a record given an id. But it method throws an exception if there would be some id that doesn't exist.

Item.find_all_by_id([3,5,9,11])

That will work even if some of the ids don't exist.

share|improve this answer
Thanks WarHog, but I'm trying to avoid using ID's as this is for a test db, and they will be constantly changing... – Adam Oct 25 '11 at 20:10
Aha, got it, sorry for my misunderstanding.. Then @tokland approach should help you. – WarHog Oct 25 '11 at 20:13
np at all. thanks again. – Adam Oct 25 '11 at 20:40

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.