Django

Code

Changeset 335

Show
Ignore:
Timestamp:
07/28/05 13:21:46 (3 years ago)
Author:
adrian
Message:

Changed docs/install.txt to note SQLite support and requirement for pysqlite 2.0.3 or higher

Files:

Legend:

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

    r258 r335  
    3232If you plan to use Django's database API functionality, you'll need to 
    3333make sure a database server is running. Django works with PostgreSQL_ 
    34 (recommended) or MySQL_. 
     34(recommended), MySQL_ and SQLite_. 
    3535 
    36 Note that MySQL support is a recent development, and Django hasn't been 
    37 comprehensively tested with that database. If you find any bugs in Django'
    38 MySQL bindings, please file them in `Django's ticket system`_ so we can fix them 
    39 immediately. 
     36Note that support for MySQL and SQLite is a recent development, and Django 
     37hasn't been comprehensively tested in those environments. If you find any bug
     38in Django's MySQL or SQLite bindings, please file them in 
     39`Django's ticket system`_ so we can fix them immediately. 
    4040 
    4141Additionally, you'll need to make sure your Python database bindings are 
     
    4646  unofficial `compiled Windows version`_. 
    4747* If you're using MySQL, you'll need MySQLdb_. 
     48* If you're using SQLite, you'll need pysqlite_. Use version 2.0.3 or higher. 
    4849 
    4950.. _PostgreSQL: http://www.postgresql.org/ 
     
    5354.. _compiled Windows version: http://stickpeople.com/projects/python/win-psycopg/ 
    5455.. _MySQLdb: http://sourceforge.net/projects/mysql-python 
     56.. _SQLite: http://www.sqlite.org/ 
     57.. _pysqlite: http://initd.org/tracker/pysqlite 
    5558 
    5659Install the Django code