Changeset 335
- Timestamp:
- 07/28/05 13:21:46 (3 years ago)
- Files:
-
- django/trunk/docs/install.txt (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
django/trunk/docs/install.txt
r258 r335 32 32 If you plan to use Django's database API functionality, you'll need to 33 33 make sure a database server is running. Django works with PostgreSQL_ 34 (recommended) or MySQL_.34 (recommended), MySQL_ and SQLite_. 35 35 36 Note that MySQL support is a recent development, and Django hasn't been37 comprehensively tested with that database. If you find any bugs in Django's38 MySQL bindings, please file them in `Django's ticket system`_ so we can fix them 39 immediately.36 Note that support for MySQL and SQLite is a recent development, and Django 37 hasn't been comprehensively tested in those environments. If you find any bugs 38 in Django's MySQL or SQLite bindings, please file them in 39 `Django's ticket system`_ so we can fix them immediately. 40 40 41 41 Additionally, you'll need to make sure your Python database bindings are … … 46 46 unofficial `compiled Windows version`_. 47 47 * 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. 48 49 49 50 .. _PostgreSQL: http://www.postgresql.org/ … … 53 54 .. _compiled Windows version: http://stickpeople.com/projects/python/win-psycopg/ 54 55 .. _MySQLdb: http://sourceforge.net/projects/mysql-python 56 .. _SQLite: http://www.sqlite.org/ 57 .. _pysqlite: http://initd.org/tracker/pysqlite 55 58 56 59 Install the Django code
