class SQLite3::ResultSet

def each_hash

each row is yielded as a hash.
Provides an internal iterator over the rows of the result set where
def each_hash
  while (node = next_hash)
    yield node
  end
end