Changed docs/install.txt to note SQLite support and requirement for pysqlite 2.0.3 or higher
git-svn-id: http://code.djangoproject.com/svn/django/trunk@335 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
parent
cf9efea240
commit
cae7ebe19f
|
@ -31,12 +31,12 @@ Get your database running
|
||||||
|
|
||||||
If you plan to use Django's database API functionality, you'll need to
|
If you plan to use Django's database API functionality, you'll need to
|
||||||
make sure a database server is running. Django works with PostgreSQL_
|
make sure a database server is running. Django works with PostgreSQL_
|
||||||
(recommended) or MySQL_.
|
(recommended), MySQL_ and SQLite_.
|
||||||
|
|
||||||
Note that MySQL support is a recent development, and Django hasn't been
|
Note that support for MySQL and SQLite is a recent development, and Django
|
||||||
comprehensively tested with that database. If you find any bugs in Django's
|
hasn't been comprehensively tested in those environments. If you find any bugs
|
||||||
MySQL bindings, please file them in `Django's ticket system`_ so we can fix them
|
in Django's MySQL or SQLite bindings, please file them in
|
||||||
immediately.
|
`Django's ticket system`_ so we can fix them immediately.
|
||||||
|
|
||||||
Additionally, you'll need to make sure your Python database bindings are
|
Additionally, you'll need to make sure your Python database bindings are
|
||||||
installed.
|
installed.
|
||||||
|
@ -45,6 +45,7 @@ installed.
|
||||||
not version 2, which is still in beta). If you're on Windows, check out the
|
not version 2, which is still in beta). If you're on Windows, check out the
|
||||||
unofficial `compiled Windows version`_.
|
unofficial `compiled Windows version`_.
|
||||||
* If you're using MySQL, you'll need MySQLdb_.
|
* If you're using MySQL, you'll need MySQLdb_.
|
||||||
|
* If you're using SQLite, you'll need pysqlite_. Use version 2.0.3 or higher.
|
||||||
|
|
||||||
.. _PostgreSQL: http://www.postgresql.org/
|
.. _PostgreSQL: http://www.postgresql.org/
|
||||||
.. _MySQL: http://www.mysql.com/
|
.. _MySQL: http://www.mysql.com/
|
||||||
|
@ -52,6 +53,8 @@ installed.
|
||||||
.. _psycopg: http://initd.org/projects/psycopg1
|
.. _psycopg: http://initd.org/projects/psycopg1
|
||||||
.. _compiled Windows version: http://stickpeople.com/projects/python/win-psycopg/
|
.. _compiled Windows version: http://stickpeople.com/projects/python/win-psycopg/
|
||||||
.. _MySQLdb: http://sourceforge.net/projects/mysql-python
|
.. _MySQLdb: http://sourceforge.net/projects/mysql-python
|
||||||
|
.. _SQLite: http://www.sqlite.org/
|
||||||
|
.. _pysqlite: http://initd.org/tracker/pysqlite
|
||||||
|
|
||||||
Install the Django code
|
Install the Django code
|
||||||
=======================
|
=======================
|
||||||
|
|
Loading…
Reference in New Issue