Arthur de Jong

Open Source / Free Software developer

summaryrefslogtreecommitdiffstats
path: root/docs/ref/databases.txt
Commit message (Collapse)AuthorAgeFilesLines
...
* added description of MySQL Connector/PythonDanSears2013-11-111-14/+47
| | | Reorganized the MySQLdb section into a "MySQL DB API Drivers" section that describes both MySQLdb and MySQL Connector/Python. Included description of the Django adaptors for these DB API drivers.
* Fixed typos in documentation.Baptiste Mispelon2013-11-061-1/+1
|
* Fixed #21364 -- Specified InnoDB full-text support from ↵Claude Paroz2013-11-011-2/+2
| | | | | | MySQL 5.6.4 on Thanks thevlad at gmail.com for the report.
* Fixed #21359 -- Corrected MySQL collation name in ↵Claude Paroz2013-11-011-2/+2
| | | | | | databases docs Thanks k_sze for the report.
* Fixed #13245: Explained Oracle's behavior w.r.t db_tableShai Berger2013-10-231-0/+16
| | | | | | and how to prevent table-name truncation Thanks russellm & timo for discussion, and timo for review.
* Fixed #20005 -- Documented that Oracle databases need ↵Tim Graham2013-09-071-0/+8
| | | | | | execute permission on SYS.DBMS_LOB. Thanks jafula for the suggestion.
* Fixed 16992 -- Added InnoDB warning regarding reuse of ↵Keith Edmiston2013-09-071-1/+4
| | | | | | AUTO_INCREMENT values. Thanks kent at nsc.liu.se for the report.
* Fixed #21035 -- Changed docs to treat the acronym SQL ↵Eric Boersma2013-09-061-1/+1
| | | | | | | phonetically. The documentation and comments now all use 'an' to refer to the word SQL and not 'a'.
* Merge remote-tracking branch 'core/master' into ↵Andrew Godwin2013-08-191-4/+0
|\ | | | | | | | | | | | | schema-alteration Conflicts: docs/ref/django-admin.txt
| * Removed versionadded/changed annotations for 1.5Tim Graham2013-08-191-4/+0
| |
* | More migration docs, and conversion of all easy syncdb ↵Andrew Godwin2013-07-251-3/+3
|/ | | | references
* Updated the `databases` documentationMatt Deacalion Stevens2013-07-191-6/+6
| | | | | | | | | | | + Removed a reference about MySQL storage engines also being called 'table types', as this term has been deprecated for 8 years and is no longer used. + Fixed the link to the official InnoDB storage engine docs. + Apache (versions >= 2.4) will always choose a multi-threaded MPM module on modern operating systems (later than 2002).
* Support 'pyformat' style parameters in raw queries, Refs ↵Shai Berger2013-06-281-0/+8
| | | | | | | | | | #10070 Add support for Oracle, fix an issue with the repr of RawQuerySet, add tests and documentations. Also added a 'supports_paramstyle_pyformat' database feature, True by default, False for SQLite. Thanks Donald Stufft for review of documentation.
* Proofed the 1.6 release notesTim Graham2013-06-051-0/+2
|
* Fixed #20511 -- Corrected link about isolation levels in ↵Claude Paroz2013-05-311-5/+4
| | | | | | databases docs Thanks tinodb for the report.
* Link to active fork for ODBC backendPaul Tax2013-05-241-1/+1
| | | | | | | | | | | It took me quite some time to find if and where the ODBC backend was maintained. I found (on djangoproject.com): http://code.google.com/p/django-pyodbc/ (last commit about 3 years ago) then: https://github.com/avidal/django-pyodbc avidal fork. then: https://github.com/aurorasoftware/django-pyodbc/ aurorasoftware version which has avidal improvements merged. Avidals version now links to https://github.com/aurorasoftware/django-pyodbc/ which is also the version installed through PIP.
* Fixed #20215 -- Disabled persistent connections by default.Aymeric Augustin2013-05-091-12/+21
|
* Marked tests of BinaryFields as expected failures on ↵Aymeric Augustin2013-05-081-0/+3
| | | | | | MySQL and Python 3. Current ports of MySQLdb are very buggy in this area.
* Fixed #20025 -- Pointed to a MySQLdb fork for Python 3.Aymeric Augustin2013-05-081-2/+11
| | | | Made a few minor compatibility adjustments.
* Adapted uses of versionchanged/versionadded to the new form.Juan Catalano2013-04-201-0/+1
| | | | Refs #20104.
* Added warn note to docs about MySQL issues with ↵Juan Catalano2013-03-191-0/+8
| | | | | | | | | | | 0000-00-00 date strings MySQL accepts 0000-00-00 as a valid date but MySQLdb converts those values into None. So there will be problems for instance if trying to transport the data using dumpdata/loaddata. This patch refs #6642 that has been closed as wontfix since this is a particular problem of MySQL.
* Fixed #19968 -- Dropped support for PostgreSQL < 8.4.Aymeric Augustin2013-03-181-16/+3
|
* Added support for savepoints in SQLite.Aymeric Augustin2013-03-111-2/+1
| | | | Technically speaking they aren't usable yet.
* Enabled database-level autocommit for all backends.Aymeric Augustin2013-03-111-45/+13
| | | | | | | This is mostly a documentation change. It has the same backwards-incompatibility consequences as those described for PostgreSQL in a previous commit.
* Fixed #18130 -- Made the isolation level configurable on ↵Aymeric Augustin2013-03-021-2/+33
| | | | | | PostgreSQL. Thanks limscoder for the report and niwi for the draft patch.
* Implemented persistent database connections.Aymeric Augustin2013-02-281-0/+62
| | | | Thanks Anssi Kääriäinen and Karen Tracey for their inputs.
* Fixed #19516 - Fixed remaining broken links.Tim Graham2013-01-031-2/+2
| | | | Added -n to sphinx builds to catch issues going forward.
* Removed versionadded/changed annotations dating back to 1.4.Aymeric Augustin2012-12-291-14/+0
|
* Fixed #19377 - Emphasized database host link in tutorialTim Graham2012-12-111-6/+2
|
* Fixed #19090 - Added PostgreSQL connection note.Tim Graham2012-11-041-0/+9
| | | | Thanks Melevir for the patch.
* Fixed #18256 - Added a potential pitfall when upgrading ↵Tim Graham2012-10-131-0/+10
| | | | to MySQL 5.5.5
* Fixed #18223 - Corrected default transaction behavior in ↵Tim Graham2012-08-171-4/+4
| | | | | | postgresql docs. Thanks philipn for the report and mateusgondim for the patch.
* [py3] Ported django.utils.encoding.Aymeric Augustin2012-08-071-1/+1
| | | | | | | | | | | * Renamed smart_unicode to smart_text (but kept the old name under Python 2 for backwards compatibility). * Renamed smart_str to smart_bytes. * Re-introduced smart_str as an alias for smart_text under Python 3 and smart_bytes under Python 2 (which is backwards compatible). Thus smart_str always returns a str objects. * Used the new smart_str in a few places where both Python 2 and 3 want a str.
* Fix typo.Piet Delport2012-07-251-1/+1
|
* Fixed #16882 - Clarified why one should not use ↵Tim Graham2012-07-011-1/+3
| | | | 'init_command' after initial database creation.
* Updated obsolete links in the documentationClaude Paroz2012-06-281-1/+1
|
* Removed references to changes made in 1.2.Aymeric Augustin2012-06-071-9/+0
| | | | Thanks Florian Apolloner for the patch.
* Prevent Oracle from changing field.null to TrueAnssi Kääriäinen2012-04-291-5/+5
| | | | | | | | | | | | | Fixed #17957 -- when using Oracle and character fields, the fields were set null = True to ease the handling of empty strings. This caused problems when using multiple databases from different vendors, or when the character field happened to be also a primary key. The handling was changed so that NOT NULL is not emitted on Oracle even if field.null = False, and field.null is not touched otherwise. Thanks to bhuztez for the report, ramiro for triaging & comments, ikelly for the patch and alex for reviewing.
* Added documentation notes about lack of database ↵Ramiro Morales2012-04-221-1/+18
| | | | | | | | savepoints support when using MySQL+MyISAM. Refs #15507, #18116 and r17341, r17921. git-svn-id: http://code.djangoproject.com/svn/django/trunk@17923 bcc190cf-cafb-0310-a4f2-bffc1f526a37
* Fixed #18116 -- Raised minimum MySQL version officially ↵Ramiro Morales2012-04-211-22/+11
| | | | | | | | suported to 5.0.3. Thanks Carl, Claude and Anssi for discussion and patch review. git-svn-id: http://code.djangoproject.com/svn/django/trunk@17921 bcc190cf-cafb-0310-a4f2-bffc1f526a37
* Fixed #17965 -- Definitely dropped support for Python ↵Claude Paroz2012-03-311-11/+0
| | | | | | 2.5. Thanks jonash for the initial patch and Aymeric Augustin for the review. git-svn-id: http://code.djangoproject.com/svn/django/trunk@17834 bcc190cf-cafb-0310-a4f2-bffc1f526a37
* Replaced http by https in djangoproject.com linksClaude Paroz2012-03-131-2/+2
| | | | git-svn-id: http://code.djangoproject.com/svn/django/trunk@17703 bcc190cf-cafb-0310-a4f2-bffc1f526a37
* Edited stuff from [17543] to [17629]Adrian Holovaty2012-03-021-2/+2
| | | | git-svn-id: http://code.djangoproject.com/svn/django/trunk@17630 bcc190cf-cafb-0310-a4f2-bffc1f526a37
* Fixed #17573 -- Documented MySQL's switch to InnoDB as ↵Aymeric Augustin2012-02-191-7/+8
| | | | | | default storage engine. Thanks Lenz Hirsch for the report and Claude Paroz for the patch. git-svn-id: http://code.djangoproject.com/svn/django/trunk@17552 bcc190cf-cafb-0310-a4f2-bffc1f526a37
* Fixed #17266 -- Skipped the "SET TIME ZONE" query for ↵Aymeric Augustin2011-12-111-3/+22
| | | | | | PostgreSQL when it isn't necessary. git-svn-id: http://code.djangoproject.com/svn/django/trunk@17194 bcc190cf-cafb-0310-a4f2-bffc1f526a37
* Fixed #17267 -- Clarified the description of MyISAM's ↵Aymeric Augustin2011-11-201-3/+4
| | | | | | lack of support for foreign keys. git-svn-id: http://code.djangoproject.com/svn/django/trunk@17120 bcc190cf-cafb-0310-a4f2-bffc1f526a37
* Fix #17174: Add note in the supported databases notes ↵Karen Tracey2011-11-131-0/+3
| | | | | | that MySQL can't conceive of a time unit smaller than a second. Thanks jammon and poirier. git-svn-id: http://code.djangoproject.com/svn/django/trunk@17095 bcc190cf-cafb-0310-a4f2-bffc1f526a37
* Fixed #12308 -- Added tablespace support to the ↵Aymeric Augustin2011-10-141-43/+0
| | | | | | PostgreSQL backend. git-svn-id: http://code.djangoproject.com/svn/django/trunk@16987 bcc190cf-cafb-0310-a4f2-bffc1f526a37
* Fixed ReST indentation errors introduced in [16983]. Grr.Luke Plant2011-10-141-5/+5
| | | | git-svn-id: http://code.djangoproject.com/svn/django/trunk@16984 bcc190cf-cafb-0310-a4f2-bffc1f526a37
* Fixed many more ReST indentation errors, somehow ↵Luke Plant2011-10-141-55/+55
| | | | | | accidentally missed from [16955] git-svn-id: http://code.djangoproject.com/svn/django/trunk@16983 bcc190cf-cafb-0310-a4f2-bffc1f526a37