>> how exactly set up the database engine as SQLight? The tutorial >> doesn't seem to tell us...
Hi, if you edit the file "settings.py" in your project directory, all you need to do is to tell Django that you want to use SQLite3 and where you want the database (somewhere on your disk, where you have write permissions). As all necessary libraries are included in Python 2.5+, Django will automaticaly create the database for you once you run "manage.py syncdb". The database will be just one physical file. Cheers Jirka P.S. Hint (for settings.py) import os DATABASE_ENGINE = 'sqlite3' DATABASE_NAME = os.path.split(__file__)[0] + 'mydatabase.sqlite3' -- You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to django-us...@googlegroups.com. To unsubscribe from this group, send email to django-users+unsubscr...@googlegroups.com. For more options, visit this group at http://groups.google.com/group/django-users?hl=en.