Re: Problem re-creating SQLite database with manage.py...

2011-12-17 Thread Ramiro Morales
On Fri, Dec 16, 2011 at 5:44 PM, J. Marc Edwards wrote: > > # sqlite database for testing > DATABASES = { >     'default': { >     'ENGINE': 'django.db.backends.sqlite3', >     'NAME': os.path.join(PROJDIR, 'db.sqlite'), >     } > } > >

Re: Problem re-creating SQLite database with manage.py...

2011-12-17 Thread eldo
may be you shold change the settings become like this one in settings.py file == DATABASES = { 'default': { 'ENGINE': 'sqlite3', <-- change it to sqlite3 'NAME': '/home/[linux_user]/[django_project]/[database_name].db', <- change the value to your project location

Problem re-creating SQLite database with manage.py...

2011-12-16 Thread J. Marc Edwards
I'm trying to re-create my SQLite database from scratch. I am now receiving the following error message from: *(foobarr)jmarcedwards@jmelinux:~/git/django-nimbis/projects/dev$ python ./manage.py syncdb Syncing... Traceback (most recent call last): File "./manage.py", line 11, in