Django

Code

Changeset 7917

Show
Ignore:
Timestamp:
07/13/08 07:16:11 (4 months ago)
Author:
russellm
Message:

Fixed #7605 -- Added a note about SQLite database creation to Tutorial 1. Thanks to pfctdayelise for the suggestion.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • django/trunk/docs/tutorial01.txt

    r7655 r7917  
    147147      Other backends are `also available`_. 
    148148    * ``DATABASE_NAME`` -- The name of your database, or the full (absolute) 
    149       path to the database file if you're using SQLite. 
     149      path to the database file if you're using SQLite.  
    150150    * ``DATABASE_USER`` -- Your database username (not used for SQLite). 
    151151    * ``DATABASE_PASSWORD`` -- Your database password (not used for SQLite). 
     
    161161    this point. Do that with "``CREATE DATABASE database_name;``" within your 
    162162    database's interactive prompt. 
     163 
     164    If you're using SQLite, you don't need to create anything beforehand - the 
     165    database file will be created automatically when it is needed. 
    163166 
    164167While you're editing ``settings.py``, take note of the ``INSTALLED_APPS``