summaryrefslogtreecommitdiff
path: root/django/db/backends
AgeCommit message (Expand)Author
2013-03-11Added an option to disable the creation of savepoints in atomic.Aymeric Augustin
2013-03-11Deprecated TransactionMiddleware and TRANSACTIONS_MANAGED.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-07Added missing method in the dummy database backend.Aymeric Augustin
2013-03-02Fixed #18130 -- Made the isolation level configurable on PostgreSQL.Aymeric Augustin
2013-03-02Reordered methods in database wrappers.Aymeric Augustin
2013-03-02Add introspection support for BinaryFieldClaude Paroz
2013-03-02Add a BinaryField model fieldClaude Paroz
2013-02-28Implemented persistent database connections.Aymeric Augustin
2013-02-27Refactored database exceptions wrapping.Aymeric Augustin
2013-02-27Fixed #19861 -- Transaction ._dirty flag improvementAnssi Kääriäinen
2013-02-25Fixed #19634 -- Added proper __hash__ methods.Aymeric Augustin
2013-02-24Add sqldropindexes to manageTomasz Rybak
2013-02-23Fixed Oracle regression in last_executed_query() with unicode stringsAnssi Kääriäinen
2013-02-21Factored code and added a missing docstring.Aymeric Augustin
2013-02-20Added a db_constraint option to ForeignKeys.Alex Gaynor
2013-02-19This function is unused and should have been removed a few releases ago.Alex Gaynor
2013-02-19Ensured a connection is established when checking the database version.Aymeric Augustin
2013-02-19Implemented Oracle version as a cached property.Aymeric Augustin
2013-02-18Added required methods in BaseDatabaseWrapper.Aymeric Augustin
2013-02-18Implemented PostgreSQL version as a cached property.Aymeric Augustin
2013-02-18Removed duplicate caching of mysql_version.Aymeric Augustin
2013-02-18Fixed #15119 -- Stopped pinging the MySQL server.Aymeric Augustin
2013-02-18Simplified MySQL version checking.Aymeric Augustin
2013-02-18Factored out common code in database backends.Aymeric Augustin
2013-02-18Removed an unecessary function.Aymeric Augustin
2013-02-16Fixed #17260 -- Added time zone aware aggregation and lookups.Aymeric Augustin
2013-02-10Fixed #19638 -- Skipped tx support testing for some DBsAnssi Kääriäinen
2013-02-10Fixed #19707 -- Reset transaction state after requestsAnssi Kääriäinen
2013-02-08Moved import in db.backends.creationClaude Paroz
2013-01-31Fixed #19709 -- Fixed TimeField introspection on MySQLClaude Paroz
2013-01-28Fixed #19677 -- Introspection of recursive foreign keys under SQLite.Aymeric Augustin