after running \"python manage.py syncdb\" i gett an error saying \"unable to open database file\".
here is the important part from my settings.py:
DA
DATABASE_NAME is deprecated. You must use the currently supported format. i.e.
DATABASES = {
'default': {
'ENGINE': 'django.db.backends.sqlite3',
'NAME': 'C:/ispdb.sqlite',
'USER': '',
'PASSWORD': '',
'HOST': '',
'PORT': ''
}
And also see other settings which are deprecated from the django website.:))