class SQLite3::ResultSet

def each

rows of the result set.
Required by the Enumerable mixin. Provides an internal iterator over the
def each
  while row=self.next
    yield row
  end
end