summaryrefslogtreecommitdiff
path: root/django/db/backends
AgeCommit message (Expand)Author
2012-10-24Fixed #19176 -- Typo in copy-pasted error message.Aymeric Augustin
2012-10-22Fixed #19162 -- Wrong indentation.Jan Bednařík
2012-10-10Revert "Fixed #16211 -- Added comparison and negation ops to F() expressions"Anssi Kääriäinen
2012-09-30Fixed #16211 -- Added comparison and negation ops to F() expressionsAnssi Kääriäinen
2012-09-26Fixed #3011 -- Added swappable auth.User models.Russell Keith-Magee
2012-09-20Imported getLogger directly from logging moduleClaude Paroz
2012-09-12Fixed #18790 -- Encoded database password on Python 2Claude Paroz
2012-09-08Moved get_primary_key_column implementation to baseClaude Paroz
2012-09-07[py3k] Fixed the index creation code that I committed a few minutes ago for p...Alex Gaynor
2012-09-07Removed many uses of bare "except:", which were either going to a) silence re...Alex Gaynor
2012-09-07Ensued that SQL indexes are alwasy created in the same name.Alex Gaynor
2012-08-30Made get_table_description also return the size of char fields on SQLiteClaude Paroz
2012-08-30Fixed #5725 -- Fixed varchar column size introspection for MySQLClaude Paroz
2012-08-30Replaced some smart_xxx by force_xxx equivalentClaude Paroz
2012-08-29Replaced many smart_bytes by force_bytesClaude Paroz
2012-08-23[py3] Removed duplicate imports.Aymeric Augustin
2012-08-20[py3] Prepared MySQL backend for Python 3 compatibilityClaude Paroz
2012-08-19[py3] Fixed Oracle specific failuresAnssi Kääriäinen
2012-08-18[py3] Ported django.utils.safestring.Aymeric Augustin
2012-08-18[py3] Fixed backends tests.Aymeric Augustin
2012-08-18[py3] Added compatibility import of thread/_threadAymeric Augustin
2012-08-16[py3] Fixed installed_models filtering.Dmitry Shevchenko
2012-08-15[py3] Pass bytes to md5 in truncate_nameClaude Paroz
2012-08-14[py3] Removed unnecessary calls to .keys()Aymeric Augustin
2012-08-13Refix #13844 -- Made FloatField aggregates work on Python 2.6 + PostgresAnssi Kääriäinen
2012-08-12Fixed #13844 -- Avoid converting unknown db values to floatAnssi Kääriäinen
2012-08-12[py3] Always convert values from sqlite3 to unicode stringsClaude Paroz
2012-08-09[py3] Renamed `next` to `__next__` in iterators.Aymeric Augustin
2012-08-08[py3] Replaced raw_input by inputClaude Paroz
2012-08-07[py3] Ported django.utils.encoding.Aymeric Augustin
2012-08-07[py3] Fixed access to dict keys/values/items.Aymeric Augustin
2012-08-03Replaced some byte strings by str() callsClaude Paroz
2012-07-24Fixed #18271 -- Changed stage at which TransactionTestCase flushes DB tables.Ramiro Morales
2012-07-22[py3] Switched to Python 3-compatible imports.Aymeric Augustin
2012-07-22[py3] Replaced unicode/str by six.text_type/bytes.Aymeric Augustin
2012-07-22[py3] Replaced basestring by six.string_types.Aymeric Augustin
2012-07-22[py3] Removed longs.Aymeric Augustin
2012-07-22[py3] Exception aren't iterable in Python 3.Aymeric Augustin
2012-07-22[py3] Used six.reraise wherever necessary.Aymeric Augustin
2012-07-17Fixed #17788 -- Added batch_size argument to qs.bulk_create()Anssi Kääriäinen
2012-07-10Fixed #18602 -- Improved error message when database NAME is missingClaude Paroz
2012-07-05Fixed #18330 - Made cache culling 3rd party db backend friendlyAnssi Kääriäinen
2012-07-01Fixed #16047 -- Restore autocommit state correctly on psycopg2Anssi Kääriäinen
2012-07-01Fixed some locations to work with autocommit=TrueAnssi Kääriäinen
2012-06-26Fixed #18465 -- Set date formats correctly on OracleJosh Smeaton
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