Included modules
Public Instance methods
fetch_rows(sql)
[show source]
# File lib/sequel/adapters/trilogy.rb 93 def fetch_rows(sql) 94 execute(sql) do |r| 95 self.columns = r.fields.map!{|c| output_identifier(c.to_s)} 96 r.each_hash{|h| yield h} 97 end 98 self 99 end