Ticket #6267: doc_add_mssql.diff
File doc_add_mssql.diff, 1.8 KB (added by , 17 years ago) |
---|
-
docs/install.txt
71 71 * If you're using Oracle, you'll need cx_Oracle_, version 4.3.1 or higher. 72 72 You will also want to read the database-specific notes for the `Oracle backend`_. 73 73 74 * If you're using MSSQL_, you'll need adodbapi_, version 2.0.1 or higher. 75 74 76 If you plan to use Django's ``manage.py syncdb`` command to 75 77 automatically create database tables for your models, you'll need to 76 78 ensure that Django has permission to create and alter tables in the … … 95 97 .. _cx_Oracle: http://cx-oracle.sourceforge.net/ 96 98 .. _Oracle: http://www.oracle.com/ 97 99 .. _Oracle backend: ../databases/#oracle-notes 100 .. _MSSQL: http://www.microsoft.com/sql/default.mspx 101 .. _adodbapi: http://adodbapi.sourceforge.net/ 98 102 .. _testing framework: ../testing/ 99 103 100 104 Remove any old versions of Django -
docs/faq.txt
300 300 301 301 If you want to use Django with a database, which is probably the case, you'll 302 302 also need a database engine. PostgreSQL_ is recommended, because we're 303 PostgreSQL fans, and MySQL_, `SQLite 3`_, and Oracle_ are also supported.303 PostgreSQL fans, and MySQL_, `SQLite 3`_, Oracle_, MSSQL_ are also supported. 304 304 305 305 .. _Python: http://www.python.org/ 306 306 .. _Apache 2: http://httpd.apache.org/ … … 310 310 .. _MySQL: http://www.mysql.com/ 311 311 .. _`SQLite 3`: http://www.sqlite.org/ 312 312 .. _Oracle: http://www.oracle.com/ 313 .. _MSSQL: http://www.microsoft.com/sql/default.mspx 313 314 314 315 Do I lose anything by using Python 2.3 versus newer Python versions, such as Python 2.5? 315 316 ----------------------------------------------------------------------------------------