On 12/30/06, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote:

I followed the tutorial up to the Poll.objects.all() call, where I get
this error

>>> from mysite.polls.models import Poll, Choice
>>> Poll.objects.all()
...
"/Library/Python/2.3/site-packages/Django-0.95-py2.3.egg/django/db/backends/sqlite3/base.py",
line 77, in execute
    return Database.Cursor.execute(self, query, params)
OperationalError: no such table: polls_poll

Any idea how to fix this?

What does this return?
python manage.py sql polls

Did you add 'mysite.polls' to INSTALLED_APPS?
Did you run this?
python manage.py syncdb

--~--~---------~--~----~------------~-------~--~----~
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