Re: SQLite3 database error!!!

2013-04-21 Thread Brad Pitcher
Can you post the rest of the traceback? On Apr 21, 2013 7:06 AM, "Kakar" wrote: > I am in settings.py and using SQLite3. But when i execute manage.py > syncdb, it gives me error: "Value error: Empty module name" I didn't > understood this part. Plz help me guyz. > > -- > You received this message

SQLite3 database error!!!

2013-04-21 Thread Kakar
I am in settings.py and using SQLite3. But when i execute manage.py syncdb, it gives me error: "Value error: Empty module name" I didn't understood this part. Plz help me guyz. -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe fro

Re: sqlite3 database error

2012-02-13 Thread Tom Evans
On Mon, Feb 13, 2012 at 4:01 PM, Dennis Lee Bieber wrote: > On Mon, 13 Feb 2012 01:50:12 -0800 (PST), Marcus Maximus > wrote: > > >>        'NAME': 'C:\Users\Maximus\Desktop\Webseite\Django\sqlite-shell- >>win32-x86-3071000\test.db',                      # Or path to database > >        Is that a

Re: sqlite3 database error

2012-02-13 Thread ajohnston
Also 'Webseite' in your file path may be misspelled? -- 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 django-users+unsubscr...@goog

Re: sqlite3 database error

2012-02-13 Thread Stanwin Siow
Try this: >> DATABASES = { >> 'default': { >> 'ENGINE': 'django.db.backends.sqlite3', # Add >> 'postgresql_psycopg2', 'postgresql', 'mysql', 'sqlite3' or 'oracle'. >> 'NAME': 'test.db', # Or path to database >> file if using sqlite3. >> 'USER': '',

Re: sqlite3 database error

2012-02-13 Thread ajohnston
Sorry. To be clearer, I should have said. In your db file name: C:\Users\Maximus\Desktop\Webseite\Django\sqlite-shell-win32- x86-3071000\test.db try changing the \ to / See: https://docs.djangoproject.com/en/dev/ref/settings/#name -- You received this message because you are subscribed to the

Re: sqlite3 database error

2012-02-13 Thread ajohnston
Try changing the slashes form \ to / On Feb 13, 4:50 am, Marcus Maximus wrote: > Hey guys, > > i am using sqlite3 for my django app. BUT I have problems installing > it. Here are my configs: > > DATABASES = { >     'default': { >         'ENGINE': 'django.db.backends.sqlite3',  # Add > 'postgresq

Re: sqlite3 database error

2012-02-13 Thread Babatunde Akinyanmi
After specifying the path to where you want your sqlite database to be i.e db name setting, after your syncdb, the database will be created automatically if it doesn't already exist in the path you stated. On 2/13/12, Marcus Maximus wrote: > Hey guys, > > i am using sqlite3 for my django app. BUT

sqlite3 database error

2012-02-13 Thread Marcus Maximus
Hey guys, i am using sqlite3 for my django app. BUT I have problems installing it. Here are my configs: DATABASES = { 'default': { 'ENGINE': 'django.db.backends.sqlite3', # Add 'postgresql_psycopg2', 'postgresql', 'mysql', 'sqlite3' or 'oracle'. 'NAME': 'C:\Users\Maximus\Desk