# File lib/dbd_sqlrelay/SQLRelay.rb, line 282 def fetch_all # otherwise, fetch the rest of the rows and return them *rows = [] index = 0 while @row_index < @row_count *rows[index] = fetch() index = index+1 end return *rows end