# File lib/big_record/base.rb, line 533
      def find_every(options)
        requested_columns = columns_to_find(options)

        raw_records = connection.get_consecutive_rows(table_name, options[:offset],
          options[:limit], requested_columns, options[:stop_row])

        raw_records.collect do |raw_record|
          add_missing_cells(raw_record, requested_columns)
          rec = instantiate(raw_record)
          rec.all_attributes_loaded = true if options[:view] == :all
          rec
        end
      end