summaryrefslogtreecommitdiff
path: root/django/db/backends
AgeCommit message (Expand)Author
2008-11-16[1.0.X] Fixed #6052 -- Worked around a bug in MySQLdb with regards to handlingMalcolm Tredinnick
2008-11-16[1.0.X] Fixed #3501 -- Fixed date filtering in querysets for nullable date fi...Malcolm Tredinnick
2008-11-14[1.0.X] Removed support for passing params as dicts in the oracle backend. Wa...Ian Kelly
2008-11-12[1.0.X] Fixed #5079 -- Avoid converting Decimals to floats during save to the...Karen Tracey
2008-10-24[1.0.X] Fixed #9307 -- Added the ability to pickle the Query class used by theMalcolm Tredinnick
2008-10-18[1.0.X] Fixed #9136: Do slicing in Oracle with rownum instead of Ian Kelly
2008-10-13[1.0.X] Fixed Oracle introspection mapping of DATE columns, and added an Ian Kelly
2008-10-11[1.0.X] Fixed .distinct() not working with slicing in Oracle, due to theMalcolm Tredinnick
2008-09-17Fixed #9113 -- Improved exception message reporting when importing sqlite3 fa...Malcolm Tredinnick
2008-09-10Fixed an incorrectly named DatabaseOperations method. It was causing non-Orac...Ian Kelly
2008-09-09db: Gave each DatabaseClient class an 'executable_name' attribute (e.g., 'psq...Adrian Holovaty
2008-09-04Fixed re-raising of ORA-01400 as an IntegrityError in a way that works on Pyt...Matt Boersma
2008-09-01Fixed #8210 and #8664: moved `USStateField` and `PhoneNumberField` to `django...Jacob Kaplan-Moss
2008-09-01Corrected Oracle DatabaseError definition.Ian Kelly
2008-09-01Fixed escaping of wildcard characters in iexact lookups in Oracle.Ian Kelly
2008-09-01Fixed #8354: the MySQL backend no longer raises a cryptic error. Instead, it ...Jacob Kaplan-Moss
2008-09-01Fixed #8316 -- Put tighter restrictions on the type of Foreign Key fieldsMalcolm Tredinnick
2008-08-29Fixed #8575 -- Catch one particular instance of OperationalError in MySQL andMalcolm Tredinnick
2008-08-28Fixed #8592 -- Fixed a bug in the way savepoint usage was disabled forMalcolm Tredinnick
2008-08-28Fixed #8597 -- Allow the use of strings containing underscores and percentageMalcolm Tredinnick
2008-08-26Fixed #8347 -- Added a few missing field type conversion to SQLite's inspectdbMalcolm Tredinnick
2008-08-25Fixed get_or_create test case for Oracle by re-raising the more specific Inte...Matt Boersma
2008-08-25Fixed #3575: use UPPER() instead ILIKE for postgres case-insensitive comparis...Jacob Kaplan-Moss
2008-08-25Fixed #7464 -- Fixed the psycopg2 backend to handle SafeString values asMalcolm Tredinnick
2008-08-24Fixed #7628 -- Oracle backend won't try to recreate existing sequences during...Matt Boersma
2008-08-23Fixed #8214 -- Added back a stringification that was dropped during [8131].Malcolm Tredinnick
2008-08-23Fixed #7536 -- Added NEWDECIMAL to introspection types in the mysql backend. ...Brian Rosner
2008-08-22Fixed Oracle backend limit/offset SQL to again use extra_select, properly thi...Matt Boersma
2008-08-22Fixed #8485: Reordered imports in the database backends to ensure that the av...Russell Keith-Magee
2008-08-19Fixed Oracle backend not to use extra_select for limit/offset type queries, w...Matt Boersma
2008-08-16Fixed #8355: Removed some whitespace that was apparently causing difficulty w...Russell Keith-Magee
2008-08-15Reverted [8318] and [8329], since the change turned out to have no effect, uponMalcolm Tredinnick
2008-08-15Fixed #8331 -- Added style parameter to sqlite backend implementation of sql_...Russell Keith-Magee
2008-08-12Fixed oracle-specific test DB creation code so the test suite will run again.Matt Boersma
2008-08-12Fixed #8260 -- Changed [8318] to also work with MySQLdb 1.2.1p2.Malcolm Tredinnick
2008-08-12Fixed a group of missing imports, aliases and parameter passings from theMalcolm Tredinnick
2008-08-12Changed "exact" matches in MySQL to use the database's native collation.Malcolm Tredinnick
2008-08-12Convert binary-matched VARCHAR fields to unicode objects in the MySQL backend.Malcolm Tredinnick
2008-08-12Do not use savepoints with PostgreSQL prior to 8.0.Malcolm Tredinnick
2008-08-12Added savepoint support to the transaction code.Malcolm Tredinnick
2008-08-11Fixed stupid syntax error in [8303].Jacob Kaplan-Moss
2008-08-11Fixed #8228: fixed a Python 2.3 compatibility from [8296].Jacob Kaplan-Moss
2008-08-11Removed some empty modules that are no longer required after [8296].Russell Keith-Magee
2008-08-11Fixed #5461 -- Refactored the database backend code to use classes for the cr...Russell Keith-Magee
2008-08-09Fixed #7921: for sqlite3 2.4.1 or later, adapt str objects to unicode, thus p...Jacob Kaplan-Moss
2008-08-08Fixed #6523 -- Use the correct cast on field types for PostgreSQL whenMalcolm Tredinnick
2008-08-02Fixed #7919 -- md5 and sha modules are deprecated since Python 2.5, use hashl...Gary Wilson Jr
2008-07-30Fixed #8028 -- A couple of small docstring fixes from [8131]. Thanks, Leo Soto.Malcolm Tredinnick
2008-07-30Fixed #7637 -- Added an extra parameterisation hook to the Oracle backend.Malcolm Tredinnick
2008-07-29Fixed #7560 -- Moved a lot of the value conversion preparation forMalcolm Tredinnick