summaryrefslogtreecommitdiff
path: root/django/db
AgeCommit message (Expand)Author
2013-03-24Fixed #15124 -- Changed the default for BooleanField.Aymeric Augustin
2013-03-23Fixed #9055 -- Standardized behaviour of parameter escaping in db cursorsClaude Paroz
2013-03-22Fixed #20094 - Be more careful when checking for IteratorMarc Tamlyn
2013-03-21Removed unused importAnssi Kääriäinen
2013-03-20Revert "Fixed 19895 -- Made second iteration over invalid queryset raise an e...Claude Paroz
2013-03-18Fixed #19968 -- Dropped support for PostgreSQL < 8.4.Aymeric Augustin
2013-03-17Fixed #19635 -- Made fields pickleableAnssi Kääriäinen
2013-03-17Merge pull request #902 from evildmp/BLANK_CHOICE_NONEAymeric Augustin
2013-03-14Fixed #16649 -- Refactored save_base logicAnssi Kääriäinen
2013-03-13removed unused BLANK_CHOICE_NONEDaniele Procida
2013-03-13Improved recovery when the connection is closed in an atomic block.Aymeric Augustin
2013-03-13Made atomic usable when autocommit is off.Aymeric Augustin
2013-03-13Refactored qs.add_q() and utils/tree.pyAnssi Kääriäinen
2013-03-12Fixed #19964 -- Removed relabel_aliases from some structsAnssi Kääriäinen
2013-03-12Fixed #20028 -- Made atomic usable on callable instances.Aymeric Augustin
2013-03-11Fixed #20010 -- Make sure `last_executed_query` contains it's associated para...Simon Charette
2013-03-11Avoided closing the database connection within a transaction.Aymeric Augustin
2013-03-11Improved the API of set_autocommit.Aymeric Augustin
2013-03-11Used commit_on_success_unless_managed to make ORM operations atomic.Aymeric Augustin
2013-03-11Added a safety net for developers messing with autocommit.Aymeric Augustin
2013-03-11Added an option to disable the creation of savepoints in atomic.Aymeric Augustin
2013-03-11Re-ordered functions by deprecation status.Aymeric Augustin
2013-03-11Deprecated TransactionMiddleware and TRANSACTIONS_MANAGED.Aymeric Augustin
2013-03-11Implemented atomic_if_autocommit.Aymeric Augustin
2013-03-11Made transaction management work even before the first SQL query.Aymeric Augustin
2013-03-11Added some assertions to enforce the atomicity of atomic.Aymeric Augustin
2013-03-11Implemented an 'atomic' decorator and context manager.Aymeric Augustin
2013-03-11Added support for savepoints in SQLite.Aymeric Augustin
2013-03-11Refactored implementation of savepoints.Aymeric Augustin
2013-03-11Moved standard SQL for savepoints in the base backend.Aymeric Augustin
2013-03-11Deprecated transaction.is_managed().Aymeric Augustin
2013-03-11Deprecated transaction.commit/rollback_unless_managed.Aymeric Augustin
2013-03-11Removed superfluous code now that connections use autocommit by default.Aymeric Augustin
2013-03-11Enabled database-level autocommit for all backends.Aymeric Augustin
2013-03-11Removed _enter/_leave_transaction_management.Aymeric Augustin
2013-03-11Added BaseDatabaseWrapper.ensure_connection.Aymeric Augustin
2013-03-11Expressed the dirty flag handling logic in terms of autocommit.Aymeric Augustin
2013-03-11Stopped flipping the uses_savepoints feature at runtime.Aymeric Augustin
2013-03-11Enabled autocommit for PostgreSQL.Aymeric Augustin
2013-03-11Separated autocommit and isolation level handling for PostgreSQL.Aymeric Augustin
2013-03-11Added an API to control database-level autocommit.Aymeric Augustin
2013-03-11Made transaction.managed a no-op and deprecated it.Aymeric Augustin
2013-03-09Fixed BinaryField support on Oracle.Florian Apolloner
2013-03-08Fixed #15363 -- Renamed and normalized to `get_queryset` the methods that ret...Loic Bistuer
2013-03-07Added a ManyToManyField(db_constraint=False) option, this allows not creating...Alex Gaynor
2013-03-07Added missing method in the dummy database backend.Aymeric Augustin
2013-03-06One more EMPTY_VALUES replacement following 22be90dd17Claude Paroz
2013-03-06Fixed #19989 -- Suppressed UnicodeWarning during BinaryField validationClaude Paroz
2013-03-02Fixed #18130 -- Made the isolation level configurable on PostgreSQL.Aymeric Augustin
2013-03-02Reordered methods in database wrappers.Aymeric Augustin