aboutsummaryrefslogblamecommitdiffstats
path: root/activerecord/lib/active_record/result.rb
blob: 0465b21e88790c7ad3533bd7dc267a015f592421 (plain) (tree)





















                                                                        



               


                                      
                               



       
module ActiveRecord
  ###
  # This class encapsulates a Result returned from calling +exec+ on any
  # database connection adapter.  For example:
  #
  #   x = ActiveRecord::Base.connection.exec('SELECT * FROM foo')
  #   x # => #<ActiveRecord::Result:0xdeadbeef>
  class Result
    include Enumerable

    attr_reader :columns, :rows

    def initialize(columns, rows)
      @columns   = columns
      @rows      = rows
      @hash_rows = nil
    end

    def each
      hash_rows.each { |row| yield row }
    end

    def to_hash
      hash_rows
    end

    private
    def hash_rows
      @hash_rows ||= @rows.map { |row|
        Hash[@columns.zip(row)]
      }
    end
  end
end