On Sat, 2007-12-29 at 00:30 -0800, sector119 wrote: > Request Method: GET > Request URL: http://127.0.0.1:8000/people/person/ > Exception Type: TypeError > Exception Value: Cannot resolve keyword '' into field. Choices are: > organizationdatabase, meterreadings, transaction, id, pid, location, > street, building, corpus, block, appartment, first_name, last_name, > middle_name, hd, population, space, rooms, privilege, comment > Exception Location: /home/sector119/devel/django_src/django/db/models/ > query.py in lookup_inner, line 1044 > Python Executable: /usr/bin/python2.5 > Python Version: 2.5.1 > > I got this exception when I use Q objects. When I use queryset = > queryset.filter(last_name=query) everything is ok, why?
There's a lot of code to wade through here, so it's a bit hard to work out what might be going wrong. I would suggest trying to reduce things to the smallest possible example that exhibits the problem. Work out what the exact Q-object is that is causing the trouble -- what parameters are passed to it. Then work out if yo ucan replicate the problem by typing in that query at the Python prompt, etc. Essentially, eliminate all the code that tries to construct the query and just work with the query that is causing the problems. Then you've reduced the problematic case to a single line of code. If you can't do that, it means the problem is with the way you are constructing the query, so you know where to look further. Regards, Malcolm -- Why be difficult when, with a little bit of effort, you could be impossible. http://www.pointy-stick.com/blog/ --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---