Re: SQLite3 refuses to work when running syncdb

2013-07-16 Thread Rafael E. Ferrero
hahaha... its ok... you will find that its really cool coding webs with Django... See ya! 2013/7/16 Alex Hall > Well, disregard my email. I was selecting the dictionary to copy into my > reply when I noticed I'd transposed two letters in the path, meaning that > Django was trying to access a pa

Re: SQLite3 refuses to work when running syncdb

2013-07-16 Thread Alex Hall
Well, disregard my email. I was selecting the dictionary to copy into my reply when I noticed I'd transposed two letters in the path, meaning that Django was trying to access a path that does not exist. That will certainly throw errors! :) Thanks anyway, and I'm sure I'll have more questions as

Re: SQLite3 refuses to work when running syncdb

2013-07-16 Thread Rafael E. Ferrero
maybe pastebin your code helps... you have permission on folders where sqlite file will be created? I have this in settings.py (django 1.3.1): ... 'default': { # Add 'postgresql_psycopg2', 'postgresql', 'mysql', 'sqlite3' or 'oracle'. 'ENGINE': 'django.db.backends.sqlite3', #

SQLite3 refuses to work when running syncdb

2013-07-16 Thread Alex Hall
Hello list, I am well versed in Python, and I hate web development, but I have to make a website for my business. So, I thought I'd use Python to make the task more tolerable. I'm working through the official Django tutorial, and am at the part where I am to run "python manage.py syncdb". Howev