hash of hashes group_by

D

Dave Smith

Hi Guys,

I have the following code which grabs some data from the database in my
model

def get_stats
sql = "select id, value from table"
my_data = self.class.connection.select_all(sql)
my_data.group_by { |row| row[:id] }
end

the data is clearly in there as a puts shows

value4id1
value1id2

but when trying to access the values

x = my_data[1][:value]

The error occurred while evaluating nil.[]

Can anyone shed some light on this?

Cheers
 
B

Brian Candler

Try 'p xxx' (or 'puts xxx.inspect') instead of 'puts xxx'.

This will show you things like the difference between a string and a
number, or between an empty string and nil.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

No members online now.

Forum statistics

Threads
473,755
Messages
2,569,536
Members
45,011
Latest member
AjaUqq1950

Latest Threads

Top