When a user logs in I set a 'user_id' variable in their session like this:
request.session['user_id'] = user_id In another view I check for the user id like this: user_id = request.session.get('user_id') If 'user_id' is set in the user's session, this works fine. If 'user_id' is not set in the user's session, I get an exception when I call request.session.get('user_id'): Traceback (most recent call last): File "/usr/lib/python2.3/site-packages/Django-0.95-py2.3.egg/django/core/handlers/base.py" in get_response 74. response = callback(request, *callback_args, **callback_kwargs) File "/home/misjxm/dp1/file/app/views.py" in inbox 42. for r in rcpt_list: File "/usr/lib/python2.3/site-packages/Django-0.95-py2.3.egg/django/db/models/query.py" in __iter__ 94. return iter(self._get_data()) File "/usr/lib/python2.3/site-packages/Django-0.95-py2.3.egg/django/db/models/query.py" in _get_data 395. self._result_cache = list(self.iterator()) File "/usr/lib/python2.3/site-packages/Django-0.95-py2.3.egg/django/db/models/query.py" in iterator 163. cursor.execute("SELECT " + (self._distinct and "DISTINCT " or "") + ",".join(select) + sql, params) File "/usr/lib/python2.3/site-packages/Django-0.95-py2.3.egg/django/db/backends/util.py" in execute 12. return self.cursor.execute(sql, params) ProgrammingError at /inbox/ ERROR: syntax error at or near ":" at character 204 SELECT "app_recipient"."id","app_recipient"."message_id","app_recipient"."user_id","app_recipient"."state","app_recipient"."when_sent" FROM "app_recipient" WHERE ("app_recipient"."user_id" = Content-Type: text/html; charset=utf-8 Location: /login/ ) ORDER BY "app_recipient"."when_sent" DESC It's kinda scary to see stuff like this making its way back to the database. Am I doing something wrong? Thanks, Jacob --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---