Ticket #11356: 3rd_party_backends.diff
File 3rd_party_backends.diff, 2.4 KB (added by , 15 years ago) |
---|
-
docs/topics/install.txt
61 61 Get your database running 62 62 ========================= 63 63 64 If you plan to use Django's database API functionality, you'll need to 65 make sure a database server is running. Django works with PostgreSQL_, 66 MySQL_, Oracle_ and SQLite_ (although SQLite doesn't require a separate server 67 to be running).64 If you plan to use Django's database API functionality, you'll need to make 65 sure a database server is running. Django supports many different database 66 servers and is officially supported with PostgreSQL_, MySQL_, Oracle_ and 67 SQLite_ (although SQLite doesn't require a separate server to be running). 68 68 69 In addition to the officially supported database backends there are also a 70 number of unofficial backends made available by 3rd parties. Note that these 71 backends are not supported by the Django project itself. This list is provided 72 as a convenience only. 73 74 * `Sybase SQL Anywhere`_ 75 * `IBM DB2`_ 76 69 77 Additionally, you'll need to make sure your Python database bindings are 70 78 installed. 71 79 … … 111 119 .. _pysqlite: http://pysqlite.org/ 112 120 .. _cx_Oracle: http://cx-oracle.sourceforge.net/ 113 121 .. _Oracle: http://www.oracle.com/ 122 .. _Sybase SQL Anywhere: http://code.google.com/p/sqlany-django/ 123 .. _IBM DB2: http://code.google.com/p/ibm-db/ 114 124 115 125 .. _removing-old-versions-of-django: 116 126 -
docs/ref/databases.txt
601 601 Oracle. A workaround to this is to keep ``TextField`` columns out of any 602 602 models that you foresee performing ``distinct()`` queries on, and to 603 603 include the ``TextField`` in a related model instead. 604 605 .. _third-party-notes: 606 607 Using a 3rd-party database backend 608 ================================== 609 610 In addition to the officially supported database backends there are 611 also a number of unofficial backends made available by 3rd 612 parties. Specific notes for configuring these backends may be found at 613 the project pages themselves. Note that these backends are not 614 supported by the Django project itself. 615 616 * `Sybase SQL Anywhere`_ 617 * `IBM DB2`_ 618 619 .. _Sybase SQL Anywhere: http://code.google.com/p/sqlany-django/ 620 .. _IBM DB2: http://code.google.com/p/ibm-db/