Ticket #6267: doc_add_mssql.diff

File doc_add_mssql.diff, 1.8 KB (added by Thejaswi Puthraya, 16 years ago)

Diff against docs adding MSSQL

  • docs/install.txt

     
    7171* If you're using Oracle, you'll need cx_Oracle_, version 4.3.1 or higher.
    7272  You will also want to read the database-specific notes for the `Oracle backend`_.
    7373
     74* If you're using MSSQL_, you'll need adodbapi_, version 2.0.1 or higher.
     75
    7476If you plan to use Django's ``manage.py syncdb`` command to
    7577automatically create database tables for your models, you'll need to
    7678ensure that Django has permission to create and alter tables in the
     
    9597.. _cx_Oracle: http://cx-oracle.sourceforge.net/
    9698.. _Oracle: http://www.oracle.com/
    9799.. _Oracle backend: ../databases/#oracle-notes
     100.. _MSSQL: http://www.microsoft.com/sql/default.mspx
     101.. _adodbapi: http://adodbapi.sourceforge.net/
    98102.. _testing framework: ../testing/
    99103
    100104Remove any old versions of Django
  • docs/faq.txt

     
    300300
    301301If you want to use Django with a database, which is probably the case, you'll
    302302also need a database engine. PostgreSQL_ is recommended, because we're
    303 PostgreSQL fans, and MySQL_, `SQLite 3`_, and Oracle_ are also supported.
     303PostgreSQL fans, and MySQL_, `SQLite 3`_, Oracle_, MSSQL_ are also supported.
    304304
    305305.. _Python: http://www.python.org/
    306306.. _Apache 2: http://httpd.apache.org/
     
    310310.. _MySQL: http://www.mysql.com/
    311311.. _`SQLite 3`: http://www.sqlite.org/
    312312.. _Oracle: http://www.oracle.com/
     313.. _MSSQL: http://www.microsoft.com/sql/default.mspx
    313314
    314315Do I lose anything by using Python 2.3 versus newer Python versions, such as Python 2.5?
    315316----------------------------------------------------------------------------------------
Back to Top