summaryrefslogtreecommitdiff
path: root/django/db/backends
AgeCommit message (Expand)Author
2012-09-07Removed many uses of bare "except:", which were either going to a) silence re...Alex Gaynor
2012-09-07Add M2M repointingAndrew Godwin
2012-09-07Ensued that SQL indexes are alwasy created in the same name.Alex Gaynor
2012-09-07Repoint ForeignKeys when their to= changes.Andrew Godwin
2012-09-07Added SQLite backend which passes all current testsAndrew Godwin
2012-09-05Merge branch 'master' into schema-alterationAndrew Godwin
2012-09-04Implement primary key changingAndrew Godwin
2012-08-30db_index alteration mostly workingAndrew Godwin
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-18Add a SQlite backend. One test passes!Andrew Godwin
2012-08-18All tests passing on MySQLAndrew Godwin
2012-08-18First stab at MySQL supportAndrew Godwin
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-10Add db_table and db_tablespace handlingAndrew Godwin
2012-08-10Merge branch 'master' into schema-alterationAndrew Godwin
2012-08-10Add support for unique_togetherAndrew Godwin
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-08-02Add M2M tests and some unique supportAndrew Godwin
2012-07-26Merge branch 'master' of github.com:django/django into schema-alterationAndrew Godwin
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