summaryrefslogtreecommitdiff
path: root/django/db/backends/util.py
AgeCommit message (Expand)Author
2015-01-17Removed backwards compatibility shims for "util" modules per deprecation time...Tim Graham
2014-03-27Add a useful stacklevel to some RemovedInDjango19WarningsChris Beaven
2014-03-08Fixed #21188 -- Introduced subclasses for to-be-removed-in-django-XX warningsClaude Paroz
2013-10-22Removed import * in tests.Tim Graham
2013-09-16Added backwards compatability shims for util modules.Tim Graham
2013-09-16Fixed #17627 -- Renamed util.py files to utils.pyTim Graham
2013-07-08A large number of stylistic cleanups across django/db/Alex Gaynor
2013-05-26Replaced `and...or...` constructs with PEP 308 conditional expressions.Ramiro Morales
2013-03-31Fixed #19220 -- Prevented decimals to be displayed in scientific notationClaude Paroz
2013-03-23Fixed #9055 -- Standardized behaviour of parameter escaping in db cursorsClaude Paroz
2013-02-27Refactored database exceptions wrapping.Aymeric Augustin
2013-02-27Fixed #19861 -- Transaction ._dirty flag improvementAnssi Kääriäinen
2012-11-17Fixed #18989 -- Removed unused condition in CursorWrapperClaude Paroz
2012-09-20Imported getLogger directly from logging moduleClaude Paroz
2012-08-29Replaced many smart_bytes by force_bytesClaude Paroz
2012-08-15[py3] Pass bytes to md5 in truncate_nameClaude Paroz
2012-06-07Fixed #18269 -- Applied unicode_literals for Python 3 compatibility.Claude Paroz
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
2011-11-18Added support for time zones. Thanks Luke Plant for the review. Fixed #2626.Aymeric Augustin
2011-09-10Fixed #16808, removed some dead code from teh ORM. Thanks to aaugustin for th...Alex Gaynor
2011-03-28Removed a bunch more Python 2.4 workarounds now that we don't support that ve...Adrian Holovaty
2011-02-14Fixed #15297 -- Corrected an attribute naming regressoin from fixing #9964. T...Russell Keith-Magee
2011-02-12Removed more redundant code from the debug cursor wrapper. Thanks to Ramiro f...Russell Keith-Magee
2011-02-12Fixed #15289 -- Removed a redundant __getattr__ implementation from the debug...Russell Keith-Magee
2011-02-12Fixed #9964 -- Ensure that all database operations make transactions dirty, n...Russell Keith-Magee
2010-11-21Fixed #14453 -- Changed handling of microseconds part in typecast_timestamp()...Ramiro Morales
2010-10-06Fixed #14406 -- Added a Python 2.4 compatibility to the logging interface. Th...Russell Keith-Magee
2010-10-04Fixed #12012 -- Added support for logging. Thanks to Vinay Sajip for his draf...Russell Keith-Magee
2010-09-13Changed the way we create class names for deferred field models to avoidMalcolm Tredinnick
2010-05-04Fixed #12164 -- Removed the Python 2.3 compatibility imports and workarounds....Russell Keith-Magee
2008-11-12Fixed #5079 -- Avoid converting Decimals to floats during save to the database.Karen Tracey
2008-08-02Fixed #7919 -- md5 and sha modules are deprecated since Python 2.5, use hashl...Gary Wilson Jr
2008-07-29Fixed #7560 -- Moved a lot of the value conversion preparation forMalcolm Tredinnick
2008-03-17Fixed #5883 -- Added __iter__ methods to the debug cursor and the postgresql ...Malcolm Tredinnick
2007-10-23Added a BaseDatabaseOperations.last_executed_query() hook, which allows a dat...Adrian Holovaty
2007-08-20Removed _dict_helper() DB backend helper function, as it wasn't being used an...Adrian Holovaty
2007-08-20Removed backend.dictfetchall(), as it wasn't being used anywhereAdrian Holovaty
2007-08-20Removed backend.dictfetchmany(), as it wasn't being used anywhereAdrian Holovaty
2007-08-20Removed backend.dictfetchone(), as it wasn't being used anywhereAdrian Holovaty
2007-07-04Merged Unicode branch into trunk (r4952:5608). This should be fullyMalcolm Tredinnick
2007-06-23Merged boulder-oracle-sprint branch (r3965:5512) back into trunk. AllMalcolm Tredinnick
2007-06-10Fixed #4518 -- Added handling of empty strings in typecast_decimal() forMalcolm Tredinnick
2007-05-21Fixed #2365, #3324 -- Renamed FloatField to DecimalField and changed the codeMalcolm Tredinnick
2007-04-26Fixed #4040 -- Changed uses of has_key() to "in". Slight performanceMalcolm Tredinnick
2006-11-07Fixed #2913: CursorDebugWrapper no longer double-tuple-izes parameters. Than...Jacob Kaplan-Moss
2006-09-22Fixed #2662 -- Changed dictfetchmany and dictfetchall to return iterators,Malcolm Tredinnick
2006-08-31Fixed #2632 -- Made django.db.backends.util._dict_helper more efficient. Than...Adrian Holovaty
2006-06-08Fixed #2109 -- Convert old-style classes to new-style classes throughout Djan...Adrian Holovaty
2006-06-01Fixed #411 -- CursorDebugWrapper now supports pyformat paramstyleAdrian Holovaty