# File lib/aws/simple_db/item_collection.rb, line 108
      def each options = {}, &block

        return if handle_query_options(:each, options, &block)

        if attributes = options.delete(:select)
          return select(attributes, options, &block)
        end

        perform_select(options) do |response|
          response.items.each do |item|
            yield(self[item.name])
          end
        end

      end