> I deleted the database again - run syncdb again - clicked 'Change' and
> bingo: same error message! No date entered, this time. Only this one
> table in the database... Is this typical for sqlite?

I've never experienced anything like this with sqlite.

What does your model look like; there may be something odd there.

you can also do:
python manage sql <app-name>
to see how the tables are created for your app.

And, from the sqlite shell, try:
 >>> .tables
to get a list of all the tables, and
 >>> .schema <table-name>
to see how that table was created.

That should help you further, whether column names were abbreviated.

Lastly, I don't know if this may make any difference, but check your  
Python and SQLite version. I have no idea, but perhaps some  
restriction on column/table name length has changed over versions.



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