On 10/8/07, Bourne <[EMAIL PROTECTED]> wrote:
>
> HEllo Russ,
>
>          Thanks for the help.. I did the syncdb part. I am still
> getting the same error. I even changed my DB from sqlite3 ato MYSQL..

The database error you are getting is fairly clear - the database does
not contain the tables it requires. This means that either:

1) You haven't put the polls application in INSTALLED APPS. As a
result of this, syncdb won't know that it needs to create tables for
those models.

2) You are not synchronizing the database correctly and the tables
have not been created. When you run syncdb you should get a  'Creating
table poll_polls' message. If you have never received this message,
you aren't synchronizing correctly.

3) You have synchronized one database but are using another. This
usually indicates that you have a PYTHONPATH or other settings related
problem.

> I installed MYSQL and created a databse and user to it. I am getting
> still weird errors like Unable to load MySqldb module....

This is a completely separate problem, and the error message tells you
exactly what the problem is - you don't have a MySQLdb module
installed. Django can't do anything to a database without the
appropriate Python DB API.

Yours,
Russ Magee %-)

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