class Sequel::Swift::Dataset

def fetch_rows(sql, &block)

Set the columns and yield the hashes to the block.
def fetch_rows(sql, &block)
  execute(sql) do |res|
    @columns = res.fields
    res.each(&block)
  end
  self
end