Ticket #4684: install.diff

File install.diff, 1.4 KB (added by nick@…, 17 years ago)

Patch for install.txt

  • docs/install.txt

     
    4747=========================
    4848
    4949If you plan to use Django's database API functionality, you'll need to
    50 make sure a database server is running. Django works with PostgreSQL_,
    51 MySQL_ and SQLite_.
     50make sure a database server is running, or use an embedded database. Django
     51works with PostgreSQL_, MySQL_ and Oracle_ servers and with the SQLite_
     52embedded database.
    5253
    5354Additionally, you'll need to make sure your Python database bindings are
    5455installed.
     
    6263* If you're using MySQL, you'll need MySQLdb_, version 1.2.1p2 or higher.
    6364  You will also want to read the database-specific notes for the `MySQL backend`_.
    6465
     66* If you're using Oracle, you'll need cx_Oracle_, version 4.3.1 or higher.
     67
    6568* If you're using SQLite, you'll need pysqlite_. Use version 2.0.3 or higher.
    6669
    67 * If you're using Oracle, you'll need cx_Oracle_, version 4.3.1 or higher.
    68 
    6970.. _PostgreSQL: http://www.postgresql.org/
    7071.. _MySQL: http://www.mysql.com/
    7172.. _Django's ticket system: http://code.djangoproject.com/report/1
     
    7677.. _pysqlite: http://initd.org/tracker/pysqlite
    7778.. _MySQL backend: ../databases/
    7879.. _cx_Oracle: http://www.python.net/crew/atuining/cx_Oracle/
     80.. _Oracle: http://www.oracle.com/
    7981
    8082Remove any old versions of Django
    8183=================================
Back to Top