summaryrefslogtreecommitdiff
path: root/django/db/backends
AgeCommit message (Expand)Author
2012-06-19Add some field schema alteration methods and tests.Andrew Godwin
2012-06-18Very start of schema alteration port. Create/delete model and some tests.Andrew Godwin
2012-06-13Fixed connection.queries encoding handling on OracleAnssi Kääriäinen
2012-06-13Fixed #18461 -- Ensured that last_executed_query returns UnicodeClaude Paroz
2012-06-09Fixed #17760 -- Implemented callable database features as cached propertiesClaude Paroz
2012-06-07Fixed #18269 -- Applied unicode_literals for Python 3 compatibility.Claude Paroz
2012-05-27Fixed #18135 -- Close connection used for db version checkingMichael Newman
2012-05-22Fixed #18319 -- Added 'supports_sequence_reset' DB featureAnssi Kääriäinen
2012-05-19Marked bytestrings with b prefix. Refs #18269Claude Paroz
2012-05-18Fixed #18334 -- Fixed detection of supports_stddev backend feature.Claude Paroz
2012-05-10Replaced foo.next() by next(foo).Claude Paroz
2012-04-30Replaced print statement by print function (forward compatibility syntax).Claude Paroz
2012-04-30Made get_indexes() consistent across backends.Anssi Kääriäinen
2012-04-29Fixed #18013 -- Use the new 'as' syntax for exceptions.Claude Paroz
2012-04-29Prevent Oracle from changing field.null to TrueAnssi Kääriäinen
2012-04-29Made table_names() output sorted.Anssi Kääriäinen
2012-04-24Fixed #17653 -- Changed MySQL backend to raise a ValueError if zero is used a...Anssi Kääriäinen
2012-04-24Fixed #16961 -- Skipped resetting AUTO_INCREMENT fields for MySQL if the serv...Anssi Kääriäinen
2012-04-21Fixed #18116 -- Raised minimum MySQL version officially suported to 5.0.3.Ramiro Morales
2012-04-02Fixed #15782 -- Prevented MySQL backend to crash on runserver when db server ...Claude Paroz
2012-03-17Fixed #17923 -- Added missing import in the MySQL and Oracle backends. Thanks...Aymeric Augustin
2012-03-13Fixed #17882 (again) -- Updated the database connections' time zone when time...Aymeric Augustin
2012-03-13Fixed #16329 -- Fixed detection of transaction-handling capabilities when all...Ramiro Morales
2012-03-12Fixed #17883. Improved error message for old-style database backends.Paul McMillan
2012-02-29Fixed #17796 -- Rolled back [17588] because the fix for the original relativelyRamiro Morales
2012-02-29Avoided importing _mysql directly. Refs #17755.Aymeric Augustin
2012-02-28Fixed #17786 (again) -- Ensured destruction of test databases works under Ora...Aymeric Augustin
2012-02-28Fixed #17786 -- Exception when running the tests under Oracle, during the des...Aymeric Augustin
2012-02-27Fixed #17755 -- Ensured datetime objects that bypass the model layer (for ins...Aymeric Augustin
2012-02-26Fixed #15169 -- Corrected handling of model boolean fields in MySQL spatial b...Ramiro Morales
2012-02-11Fixed #10837 -- Added CHAR(X)->CharField to mapping used in Postgres DB intro...Ramiro Morales
2012-02-11Fixed #15216 -- Made return type of an internal DB introspection method consi...Ramiro Morales
2012-02-11Fixed #7783 -- Made introspection of nullable columns more robust with Postgres.Ramiro Morales
2012-02-11Removed code duplicated in SQLite3 and SpatiaLite GeoDjango DB backends.Ramiro Morales
2012-01-30Fixed #10868 -- Stopped restoring database connections after the tests' execu...Julien Phalip
2012-01-22Fixed #10320 -- Made it possible to use executemany with iterators. Thanks Mo...Aymeric Augustin
2012-01-12Fixed #6669 -- Ensured database connections are marked as dirty by CursorDebu...Aymeric Augustin
2012-01-07Added missing bits of r17352. Refs #17513.Aymeric Augustin
2012-01-07Fixed #17513 -- Prevented the MySQL backend from leaking MySQLdb-specific exc...Aymeric Augustin
2012-01-05Added support for savepoints to the MySQL DB backend.Ramiro Morales
2011-12-22Added support for modifying the effect of ``DISTINCT`` clauses so theyRamiro Morales
2011-12-16Ensured that thread-shareability gets validated when closing a PostgreSQL or ...Julien Phalip
2011-12-16Fixed #17258 -- Moved `threading.local` from `DatabaseWrapper` to the `django...Julien Phalip
2011-12-11Fixed #17266 -- Skipped the "SET TIME ZONE" query for PostgreSQL when it isn'...Aymeric Augustin
2011-12-07Simplified time zone support in the Oracle backend. Avoided outputtypehandler...Aymeric Augustin
2011-12-05Fixed #17335 -- Added supports_select_related hook for django-nonrel. Thanks,...Adrian Holovaty
2011-11-20Fixed #17062 -- Ensured that the effect of SET TIME ZONE isn't lost when the ...Aymeric Augustin
2011-11-19Fixed #15255 -- Ensured createcachetable honors database routers.Aymeric Augustin
2011-11-19Used symbolic constants for psycopg2 isolation levels.Aymeric Augustin
2011-11-18Added support for time zones. Thanks Luke Plant for the review. Fixed #2626.Aymeric Augustin