From 48d41cf78eb480f8190801e18d529057f14a4760 Mon Sep 17 00:00:00 2001 From: Russell Keith-Magee Date: Mon, 22 Sep 2008 11:10:39 +0000 Subject: [PATCH] Fixed #8371: Added a note warning Windows users about the use of forward slashes when specifying the DATABASE_NAME setting. git-svn-id: http://code.djangoproject.com/svn/django/trunk@9084 bcc190cf-cafb-0310-a4f2-bffc1f526a37 --- docs/ref/settings.txt | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/docs/ref/settings.txt b/docs/ref/settings.txt index 08f93246a7..19d9b2cc49 100644 --- a/docs/ref/settings.txt +++ b/docs/ref/settings.txt @@ -192,7 +192,8 @@ DATABASE_NAME Default: ``''`` (Empty string) The name of the database to use. For SQLite, it's the full path to the database -file. +file. When specifying the path, always use forward slashes, even on Windows +(e.g. ``C:/homes/user/mysite/sqlite3.db``). .. setting:: DATABASE_OPTIONS