Ruby Programming
 
Forums: » Register « |  User CP |  Games |  Calendar |  Members |  FAQs |  Sitemap |  Support | 
User Name:
Password:
Remember me

The Shed is going Social! Join us on FaceBook and Twitter and chime in on the conversation.

Go Back   Dev Shed ForumsProgramming LanguagesRuby Programming

Reply
Add This Thread To:
  Del.icio.us   Digg   Google   Spurl   Blink   Furl   Simpy   Y! MyWeb 
Thread Tools Search this Thread Rate Thread Display Modes
 
Unread Dev Shed Forums Sponsor:
  #1  
Old June 25th, 2008, 10:20 PM
r2b2 r2b2 is offline
Contributing User
Dev Shed Newbie (0 - 499 posts)
 
Join Date: Apr 2005
Posts: 321 r2b2 User rank is Corporal (100 - 500 Reputation Level)r2b2 User rank is Corporal (100 - 500 Reputation Level)r2b2 User rank is Corporal (100 - 500 Reputation Level)r2b2 User rank is Corporal (100 - 500 Reputation Level) 
Time spent in forums: 5 Days 18 h 21 m 47 sec
Reputation Power: 12
How to use ActiveRecord to retrieve all columns and rows... ?

Hi, how can i use ActiveRecord associations to retrieve all columns and rows including the columns and rows in the referenced table.

for example :

Code:
* = primary key
+ = foreign key

Table : parents
*id 
parent_name

Table : kids
*id
+parent_id
kid_name

class Parent < ActiveRecord::Base
   has_many :kids
end

class Kid < ActiveRecord::Base
   belongs_to :parents
end


How can I get all the columns present in this two table and produce something like:

Code:
parents.id, parents.parent_name, kids.id, kids.parent_id, kids.kid_name 


I only assume that the above ActiveRecord associations executes something like :

Code:
SELECT parents.id, parents.parent_name, kids.id, kids.parent_id, kids.kid_name
FROM parents left join kids on parents.id = kids.parent_id


Thanks

Reply With Quote
  #2  
Old June 26th, 2008, 02:43 PM
Scorpions4ever's Avatar
Scorpions4ever Scorpions4ever is offline
Banned ;)
Dev Shed God 9th Plane (9000 - 9499 posts)
 
Join Date: Nov 2001
Location: Woodland Hills, Los Angeles County, California, USA
Posts: 9,385 Scorpions4ever User rank is General 46th Grade (Above 100000 Reputation Level)Scorpions4ever User rank is General 46th Grade (Above 100000 Reputation Level)Scorpions4ever User rank is General 46th Grade (Above 100000 Reputation Level)Scorpions4ever User rank is General 46th Grade (Above 100000 Reputation Level)Scorpions4ever User rank is General 46th Grade (Above 100000 Reputation Level)Scorpions4ever User rank is General 46th Grade (Above 100000 Reputation Level)Scorpions4ever User rank is General 46th Grade (Above 100000 Reputation Level)Scorpions4ever User rank is General 46th Grade (Above 100000 Reputation Level)Scorpions4ever User rank is General 46th Grade (Above 100000 Reputation Level)Scorpions4ever User rank is General 46th Grade (Above 100000 Reputation Level)Scorpions4ever User rank is General 46th Grade (Above 100000 Reputation Level)Scorpions4ever User rank is General 46th Grade (Above 100000 Reputation Level)Scorpions4ever User rank is General 46th Grade (Above 100000 Reputation Level)Scorpions4ever User rank is General 46th Grade (Above 100000 Reputation Level)Scorpions4ever User rank is General 46th Grade (Above 100000 Reputation Level)Scorpions4ever User rank is General 46th Grade (Above 100000 Reputation Level) 
Time spent in forums: 1 Month 4 Weeks 1 Day 21 h 30 m 25 sec
Reputation Power: 4080
Something like this:
Code:
@array = []
parents = Parent.find(:all)
parents.each do |p|
   kids = p.kids
   kids.each do |k|
      # Do something with the data
      str = "#{p.id} #{p.parent_name} #{k.id} #{k.parent_id}"
      @array << str
   end
end
__________________
Up the Irons
What Would Jimi Do? Smash amps. Burn guitar. Take the groupies home.
"Death Before Dishonour, my Friends!!" - Bruce D ickinson, Iron Maiden Aug 20, 2005 @ OzzFest
Down with Sharon Osbourne

Reply With Quote
Reply

Viewing: Dev Shed ForumsProgramming LanguagesRuby Programming > How to use ActiveRecord to retrieve all columns and rows... ?

Developer Shed Advertisers and Affiliates



Thread Tools  Search this Thread 
Search this Thread:

Advanced Search
Display Modes  Rate This Thread 
Rate This Thread:


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
View Your Warnings | New Posts | Latest News | Latest Threads | Shoutbox
Forum Jump

Forums: » Register « |  User CP |  Games |  Calendar |  Members |  FAQs |  Sitemap |  Support | 
  
 


Powered by: vBulletin Version 3.0.5
Copyright ©2000 - 2013, Jelsoft Enterprises Ltd.

© 2003-2013 by Developer Shed. All rights reserved. DS Cluster - Follow our Sitemap