summaryrefslogtreecommitdiff
path: root/docs/ref/databases.txt
AgeCommit message (Collapse)Author
2019-04-05[1.11.x] Refs #30331 -- Doc'd that psycopg2 < 2.8 is required.Mariusz Felisiak
Backport of 0a8617a5b1cac7063f30e4d8ff4ea4c30748f7b8 from stable/2.1.x.
2019-02-08[1.11.x] Removed extra characters in docs header underlines.Mariusz Felisiak
Backport of 25829197bb94585e94695360065ac614aa9e6a56 from master
2019-02-01[1.11.x] Refs #30150 -- Doc'd that MySQL 8 isn't supported.Tim Graham
2018-12-05[1.11.x] Refs #30013 -- Doc'd that mysqlclient 1.3.14 and later isn't supported.Tim Graham
2018-09-18[1.11.x] Refs #29759 -- Doc'd that cx_Oracle < 7 is required.Mariusz Felisiak
Backport of 7085247e2fd1ad8b08103173a23ca730784765a3 from stable/2.0.x
2017-06-19[1.11.x] Fixed #18485 -- Doc'd behavior of PostgreSQL when manually setting ↵François Freitag
AutoField. Backport of 4f1eb64ad0bcebfae4075486855eb6b63355cc5a from master
2017-05-22[1.11.x] Updated various links in docs to avoid redirectsClaude Paroz
Thanks Tim Graham and Mariusz Felisiak for review and completion.
2017-05-06[1.11.x] Fixed #28062 -- Added a setting to disable server-side cursors on ↵François Freitag
PostgreSQL. When a connection pooler is set up in transaction pooling mode, queries relying on server-side cursors fail. The DISABLE_SERVER_SIDE_CURSORS setting in DATABASES disables server-side cursors for this use case. Backport of 88336fdbb5e101fa25825b737169c0d6af2faa93 from master
2017-05-02[1.11.x] Fixed broken link to mysqlclient docs.Tim Graham
Backport of 13cd5b067054f40c6ca723c97fff56c510c04295 from master
2017-03-21[1.11.x] Fixed #27966 -- Bumped required psycopg2 version to 2.5.4.Mariusz Felisiak
Thanks Tim Graham for the review. Backport of 43380e911073beab401a2fdeca0f25001e170dac from master
2017-03-20[1.11.x] Removed extra characters in docs header underlines.Mariusz Felisiak
Backport of a3af8c99d94638e0d1fc8a847b74aa6953441d55 from master
2017-01-25[1.11.x] Bumped MySQLdb version requirement to 1.2.3.Tim Graham
Older versions don't support Python 2.7. Partial backport of 2d96c027f5eb32c2c09bd57df2240ae1d343b98e from master
2017-01-17Refs #27683 -- Allowed setting isolation level in DATABASES ['OPTIONS'] on ↵Tim Graham
MySQL.
2017-01-11Refs #16614 -- Made QuerySet.iterator() use server-side cursors on PostgreSQL.François Freitag
Thanks to Josh Smeaton for the idea of implementing server-side cursors in PostgreSQL from the iterator method, and Anssi Kääriäinen and Kevin Turner for their previous work. Also Simon Charette and Tim Graham for review.
2016-12-29Fixed #27649 -- Bumped required cx_Oracle to 5.2.Tim Graham
Removed obsolete workarounds from 1aa48898085ea16915877cc139e238a74e3f554b and dcf3be7a621f011a918453527406216a738acf68.
2016-11-08Fixed #27420 -- Quoted the Oracle test user password in queries.Mariusz Felisiak
2016-10-25Updated postgresql.org links to https and made them canonical.Marti Raudsepp
2016-09-30Updated links to the current version of MySQL docs.Tim Graham
2016-09-03Replaced smart_* by force_* calls whenever possibleClaude Paroz
The smart_* version should only be used when a lazy string should keep its lazy status.
2016-09-01Refs #27162 -- Complemented docs related to CreateExtensionClaude Paroz
Thanks Tim Graham for the review.
2016-08-23Fixed #27061 -- Added a TEST['TEMPLATE'] setting for PostgreSQL.Chris Jerdonek
2016-08-08Fixed #26500 -- Added SKIP LOCKED support to select_for_update().Simon Charette
Thanks Tim for the review.
2016-06-01Fixed #26675 -- Dropped support for PostgreSQL 9.2/PostGIS 2.0.Tim Graham
2016-04-28Fixed #26554 -- Updated docs URLs to readthedocs.ioTim Graham
2016-04-08Fixed #15940 -- Added MySQL note about strict SQL modeClaude Paroz
2016-01-22Fixed #26121 -- Updated MySQL storage engine example.Tim Graham
default_storage_engine was introduced in MySQL 5.5.3. storage_engine was removed in MySQL 5.7.5.
2015-12-23Fixed #25979 -- Dropped support for PostgreSQL 9.1.Tim Graham
2015-12-01Fixed #25778 -- Updated docs links to use https when available.Jon Dufresne
2015-11-10Removed obsolete note about installing psycopg2 on Windows.Tim Graham
psycopg2 now publishes binary wheel files for Windows so you can install it using pip.
2015-11-05Fixed #24244 -- Documented contrib.admin.models.LogEntryAlex Morozov
2015-10-02Fixed link to the MySQL Connector/Python Django Backend documentation.Nick Williams
2015-09-24Bumped latest Python 2.7 release in docs/ref/databases.txt.Tim Graham
2015-09-23Removed versionadded/changed annotations for 1.8.Tim Graham
2015-09-18Made assorted improvements to the Oracle documentation.Mariusz Felisiak
2015-09-18Dropped support for Oracle 11.1.Tim Graham
2015-09-17Refs #14091 -- Fixed connection.queries on SQLite.Aymeric Augustin
2015-09-04Refs #25345 -- Updated links to code.google.com.Maxime Lorant
2015-08-27Refs #2495 -- Documented that MySQL cannot have TextField(unique=True).Tim Graham
2015-08-05Fixed #25212 -- Documented the RawSQL expression.Tim Graham
2015-07-21Added PostgreSQL non-durable settings hint in docs.Federico Capoano
Following discussion on django-developers: https://groups.google.com/d/topic/django-developers/IkRgMxTTzPQ/discussion
2015-03-27Dropped support for PostgreSQL 9.0.Tim Graham
2015-03-10Fixed typo in docs/ref/database.txtCalvin Jeong
2015-02-16Fixed #24335 -- Bumped required psycopg2 version to 2.4.5 (2.5 for ↵Tim Graham
contrib.postgres).
2015-02-16Fixed #24350 -- Freshened up database install topic section.Tim Graham
2015-02-16Removed a note about old versions of MySQLdb.Tim Graham
2015-01-15Fixed #24148 -- Documented a bug with case expressions in SQLite < 3.7.0Michał Modzelewski
2014-12-19Updated some other external links in the docsClaude Paroz
2014-12-19Used https for most *.python.org linksClaude Paroz
2014-12-08Refs #23964 -- Added warning about case-insensitive, unique fields used with ↵Jon Dufresne
formsets
2014-11-04Fixed links to mysqlclient in database notes.Tim Graham