# File lib/ruport/data/record.rb, line 114
    def []=(index,value)
      case(index)
      when Integer
        @data[@attributes[index]] = value
      else
        @data[index] = value
        @attributes << index unless @attributes.include? index
      end
    end