On 7/11/07, Carl Karsten <[EMAIL PROTECTED]> wrote:
> How can I do something similar with:
>      coursestatus = Event.objects.filter(
>        eventtype__eventcode='corsecond',
>        eventdate__lt = datetime.now()
>        ).latest('eventdate')
>
> Currently I get " Event matching query does not exist. "

As you should -- when there is no object matching the parameters
you've passed, 'latest()' raises ObjectDoesNotExist (specifically in
this case, the subclass Event.DoesNotExist).

What you want is to wrap a try/except block around that, like so:

try:
    coursestatus = Event.objects.filter(...your params...).latest()
except Event.DoesNotExist:
    coursestatus = None

-- 
"Bureaucrat Conrad, you are technically correct -- the best kind of correct."

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to