summaryrefslogtreecommitdiff
path: root/django/db/backends/__init__.py
AgeCommit message (Expand)Author
2013-06-07Merge remote-tracking branch 'core/master' into schema-alterationAndrew Godwin
2013-05-19Merge pull request #1160 from erikr/host-inet-postgres2Aymeric Augustin
2013-05-19Fixed #11442 -- Postgresql backend casts all inet types to textErik Romijn
2013-04-24Fixed documentation of disable_constraint_checkingMichael Manfre
2013-04-18Merge branch 'master' into schema-alterationAndrew Godwin
2013-03-23Fixed #9055 -- Standardized behaviour of parameter escaping in db cursorsClaude Paroz
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-11Avoided closing the database connection within a transaction.Aymeric Augustin
2013-03-11Improved the API of set_autocommit.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-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-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-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-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-02Reordered methods in database wrappers.Aymeric Augustin
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-21Factored code and added a missing docstring.Aymeric Augustin
2013-02-19Ensured a connection is established when checking the database version.Aymeric Augustin
2013-02-18Added required methods in BaseDatabaseWrapper.Aymeric Augustin
2013-02-18Fixed #15119 -- Stopped pinging the MySQL server.Aymeric Augustin
2013-02-18Factored out common code in database backends.Aymeric Augustin
2013-02-16Fixed #17260 -- Added time zone aware aggregation and lookups.Aymeric Augustin
2013-02-10Fixed #19707 -- Reset transaction state after requestsAnssi Kääriäinen
2013-01-26Fixed #17158 -- Used a non-ambiguous representation of SQL queriesAymeric Augustin
2013-01-12Return namedtuple from get_table_descriptionClaude Paroz
2012-12-18Merge remote-tracking branch 'core/master' into schema-alterationAndrew Godwin
2012-12-16Fixed #19197 -- fixed convert_values() for nullable numeric fieldsAnssi Kääriäinen
2012-12-14Fixed #2304 -- Documented TRANSACTIONS_MANAGED.Aymeric Augustin
2012-11-15Fixed #19058 -- Fixed Oracle GIS crashAnssi Kääriäinen
2012-10-26Merge branch 'master' into schema-alterationAndrew Godwin
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