# File lib/sequel/adapters/ado.rb, line 89 def fetch_rows(sql) execute(sql) do |s| @columns = cols = s.Fields.extend(Enumerable).map{|column| output_identifier(column.Name)} s.getRows.transpose.each{|r| yield cols.inject({}){|m,c| m[c] = r.shift; m}} unless s.eof end end
ADO returns nil for all for delete and update statements.
# File lib/sequel/adapters/ado.rb, line 97 def provides_accurate_rows_matched? false end
Generated with the Darkfish Rdoc Generator 2.