django1/django/db/backends
Malcolm Tredinnick a152909069 Fixed #10467 -- Fixed generated INSERT SQL for PostgreSQL 8.1 and earlier.
I introduced a bad regression in r10029, forgetting to check that some
syntax was supported. For now, you can't use autocommit=True with 8.1
and earlier (it's still available for later versions). I'll fix the
broader issue later and re-enable it for those versions, but I want to
get the SQL regression for the default path out of the code right now.

git-svn-id: http://code.djangoproject.com/svn/django/trunk@10035 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2009-03-12 05:32:00 +00:00
..
dummy Fixed #10459 -- Refactored the internals of database connection objects so that connections know their own settings and pass around settings as dictionaries instead of passing around the Django settings module itself. This will make it easier for multiple database support. Thanks to Alex Gaynor for the initial patch. 2009-03-11 03:39:34 +00:00
mysql Fixed #10463 -- Corrected a problem with the MySQL backend, introduced by [10026]. 2009-03-11 11:03:36 +00:00
oracle Fixed some breakages in the Oracle test database handling from r10026. 2009-03-11 21:14:18 +00:00
postgresql Fixed #10459 -- Refactored the internals of database connection objects so that connections know their own settings and pass around settings as dictionaries instead of passing around the Django settings module itself. This will make it easier for multiple database support. Thanks to Alex Gaynor for the initial patch. 2009-03-11 03:39:34 +00:00
postgresql_psycopg2 Fixed #10467 -- Fixed generated INSERT SQL for PostgreSQL 8.1 and earlier. 2009-03-12 05:32:00 +00:00
sqlite3 Fixed #10459 -- Refactored the internals of database connection objects so that connections know their own settings and pass around settings as dictionaries instead of passing around the Django settings module itself. This will make it easier for multiple database support. Thanks to Alex Gaynor for the initial patch. 2009-03-11 03:39:34 +00:00
__init__.py Fixed #3460 -- Added an ability to enable true autocommit for psycopg2 backend. 2009-03-11 07:06:50 +00:00
creation.py Fixed the django.contrib.gis test database creation as well. 2009-03-11 05:48:26 +00:00
util.py Fixed #5079 -- Avoid converting Decimals to floats during save to the database. 2008-11-12 00:35:24 +00:00