class SQLite3::ResultSet

def each

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