Ich bin ein Django-Anfänger und lese gerade "Practical django Projects". Das Buch weist mich an, folgendes einzufügen-
DATABASE_ENGINE = ‘sqlite3
In der Datei settings.py ist DATABASES jedoch stattdessen ein Wörterbuch -
DATABASES = {
'default': {
'ENGINE': 'django.db.backends.', # Add 'postgresql_psycopg2', 'postgresql', 'mysql', 'sqlite3' or 'oracle'.
'NAME': '', # Or path to database file if using sqlite3.
'USER': '', # Not used with sqlite3.
'PASSWORD': '', # Not used with sqlite3.
'HOST': '', # Set to empty string for localhost. Not used with sqlite3.
'PORT': '', # Set to empty string for default. Not used with sqlite3.
}
}
Handelt es sich um eine andere Version oder irre ich mich? Bitte schlagen Sie auch alle Tutorials online, die Sie denken, wird mir helfen, django lernen.