Methods

Class/Module Index [+]

Quicksearch

Sequel::Swift::Dataset

Constants

DatasetClass

Public Instance Methods

fetch_rows(sql, &block) click to toggle source

Set the columns and yield the hashes to the block.

# File lib/sequel/adapters/swift.rb, line 138
def fetch_rows(sql, &block)
  execute(sql) do |res|
    @columns = res.fields
    res.each(&block)
  end
  self
end

[Validate]

Generated with the Darkfish Rdoc Generator 2.