# File lib/rbase/record.rb, line 31
    def initialize(table, attributes = {})
      @table = table
      @values_cached = {}
      @values_changed = {}

      attributes.each { |k, v| @values_changed[k.to_s.upcase] = v }
    end