diff options
| author | Russell Keith-Magee <russell@keith-magee.com> | 2008-09-22 11:10:39 +0000 |
|---|---|---|
| committer | Russell Keith-Magee <russell@keith-magee.com> | 2008-09-22 11:10:39 +0000 |
| commit | 48d41cf78eb480f8190801e18d529057f14a4760 (patch) | |
| tree | 29487681d9b53ce869db29903f7df23338b380a4 | |
| parent | 54f962c0bf3cf4802ee2c94194bcdb4bd4728106 (diff) | |
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
| -rw-r--r-- | docs/ref/settings.txt | 3 |
1 files changed, 2 insertions, 1 deletions
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 |
