Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am trying to do this:

UserLog.objects.filter(user=user).filter(action='message').filter(timestamp__lt=now)[0:5].update(read=True)

but I am getting this error:

Cannot update a query once a slice has been taken.

(using django 1.2.1)

What am I doing wrong?

share|improve this question

4 Answers

up vote 4 down vote accepted

As the error states, you cannot call update() on a QuerySet if you took out a slice.

The reason:

  1. Taking a slice is equivalent to a LIMIT statement in SQL.
  2. Issuing an update turns your query into an UPDATE statement.

What you are trying to do would be equivalent to

UPDATE ... WHERE ... LIMIT 5

which is not possible.

share|improve this answer
1  
Thank you very much. I see my error. Is there any workaround for this? (other than looping over the pks and updating each one?) – xpanta Nov 26 '10 at 14:28

The documentation suggests that something like the following might be possible - I'm not sure if doing the limiting in an inner QuerySet bypasses the check around calling update() after slicing:

inner_q = UserLog.objects.filter(user=user,
                                 action='message',
                                 timestamp__lt=now).values('pk')[0:5]
UserLog.objects.filter(pk__in=inner_q).update(read=True)

Failing that, you could use the in field lookup like so:

ids = UserLog.objects.filter(user=user,
                             action='message',
                             timestamp__lt=now).values_list('pk', flat=True)[0:5]
UserLog.objects.filter(pk__in=list(ids)).update(read=True)
share|improve this answer
Thank you very much! This will do the trick. :) – xpanta Nov 26 '10 at 19:06
2  
first method worked for me. didn't try the second one. – Nathan Keller Oct 16 '11 at 11:56
Yah, dude. ROCK. – akellehe Oct 6 '12 at 14:32

You can't do that. From the Django documents: QuerySet API reference - update

share|improve this answer

I was getting the same error when attempting to limit the number of records returned by a queryset.

I found that if we're using one of Django's class-based generic views such as the ArchiveIndexView, we can use the paginate_by = attribute to limit the number of records.

For example (in views.py):

from django.views.generic import ArchiveIndexView
from .models import Entry

class HomeListView(ArchiveIndexView):
    """ Blog Homepage """
    model = Entry
    date_field = 'pub_date' 
    template_name = 'appname/home.html'
    queryset = Entry.objects.filter(
        is_active=True).order_by('-pub_date', 'title')
    paginate_by = 30
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.