vote up 2 vote down star

What is the recommended idiom for checking whether a query returned any results?
Example:

orgs = Organisation.objects.filter(name__iexact = 'Fjuk inc')
# If any results
    # Do this with the results without querying again.
# Else, do something else...

I suppose there are several different ways of checking this, but I'd like to know how an experienced Django user would do it. Most examples in the docs just ignore the case where nothing was found...

flag

58% accept rate

3 Answers

vote up 3 vote down check
if not orgs:
    # Do this...
else:
    # Do that...
link|flag
vote up 3 vote down

Remember that querysets are iterable and this idiom can be used when iterating Python:

for org in orgs:
    # do some things
else:
    # do something else

The else block will only be executed when there is nothing to iterate over in the for loop.

link|flag
vote up 1 vote down

The most efficient way is this:

if orgs.count() == 0:
    # no results
else:
    # alrigh! let's continue...
link|flag

Your Answer

Get an OpenID
or

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