> What I need to know is where did django create the default one. > > I didn't create it. I just specified I wanted to use sqlite3 in the > settings.py file, and left the DATABASE_NAME intact.
Probably in your tmp directory: /tmp on most unices, or /var/tmp on OS X (don't know about windows). You can find it by starting the database with python manage.py dbshell, and then on the sqlite prompt, use the '.databases' command. Although, from a quick try myself, while .databases does list some paths in tmp, these files don't actually show up in tmp. I guess it just creates an empty database in memory for the moment, until you save something. Does your application actually work without a DATABASE_NAME? Ie, do you get a database filled with data? Evert --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to [email protected] 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 -~----------~----~----~----~------~----~------~--~---

