# File lib/dbd_sqlrelay/SQLRelay.rb, line 269 def fetch_many(cnt) # fetch the next "cnt" rows and return them *rows = [] index = 0 while index < cnt and @row_index < @row_count *rows[index] = fetch() index = index+1 end return *rows end