Re: Django app, part 1, error with the database

2011-11-01 Thread Nicolas
Hi, Thanks for your messages. The problem was indeed some missing commas after 'ENGINE': ' ' and 'NAME': ' ' Best -Nicolas- On Nov 1, 6:32 pm, Sandro Dutra wrote: >  'NAME': 'C:/Users/songbird/Desktop/bdd/' # Or path to database file > if using sqlite3. > > You're using a SQLite database, so you'

Re: Django app, part 1, error with the database

2011-11-01 Thread Sandro Dutra
'NAME': 'C:/Users/songbird/Desktop/bdd/' # Or path to database file if using sqlite3. You're using a SQLite database, so you've to provide the full path to SQLite database file, for example: 'NAME': 'C:/Users/songbird/Desktop/bdd/mydb.db3' instead only the path to directory. 2011/11/1 Nikolas S

Re: Django app, part 1, error with the database

2011-11-01 Thread Nikolas Stevenson-Molnar
Hi Nicolas, It looks like you have a syntax error in your settings file. It's possible you left of a comma after one of your dictionary values, or didn't close a brace. I can't tell for sure without more context: could you please provide the complete "DATABASES" section of your settings file? On