mysql ruby prob

A

abc-

Hi,

after hours of reading and searching i can't get the solution
code:

require 'mysql'
my = Mysql.new("localhost", "user", "", "database")
data = my.query("select * from books Limit 5")
p "first time"
data.each { |d| p d[0]}
p "again"
data.each { |d| p d[0]}

Result:
"first time"
"7"
"9"
"11"
"12"
"14"
"again"

I expected that the result would be:

"first time"
"7"
"9"
"11"
"12"
"14"
"again"
"7"
"9"
"11"
"12"
"14"

I get this result only if i add

require 'mysql'
my = Mysql.new("localhost", "user", "", "database")
data = my.query("select * from books Limit 5")
p "first time"
data.each { |d| p d[0]}
p "again"
data = my.query("select * from books Limit 5") << ADDED
data.each { |d| p d[0]}

So i think thats not the rigth way - don't repeat yourself

Thanks in advance
DG


--------------= Posted using GrabIt =----------------
------= Binary Usenet downloading made easy =---------
-= Get GrabIt for free from http://www.shemes.com/ =-
 
G

Gregory Seidman

after hours of reading and searching i can't get the solution
code:

require 'mysql'
[iterating twice through the same result set, expecting the rows twice]
I get this result only if i add

require 'mysql'
my = Mysql.new("localhost", "user", "", "database")
data = my.query("select * from books Limit 5")
p "first time"
data.each { |d| p d[0]}
p "again"
data = my.query("select * from books Limit 5") << ADDED
data.each { |d| p d[0]}

So i think thats not the rigth way - don't repeat yourself

The result set returned by the query is not an array of rows. It is an
interface to reading the results row by row without storing all of them in
memory at once. This means that as you iterate, it throws out the previous
row. If you want an array of rows, through which you can iterate
as often as you like, use this:

require 'mysql'
my = Mysql.new("localhost", "user", "", "database")
data = my.query("select * from books Limit 5").extend(Enumerable).to_a
# ...
Thanks in advance
DG
--Greg
 

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

Forum statistics

Threads
474,285
Messages
2,571,416
Members
48,111
Latest member
PorterZ31

Latest Threads

Top