django1/django/db/backends
Malcolm Tredinnick 595e75e8dd Fixed #5729 -- For MySQL (only), always delay the creation of foreign key
references, for all tables, until after the table has been created. This means
that when using the InnoDB storage engine, true foreign key constraints are
created (inline "REFERENCES" are ignored by InnoDB, unfortunately).

Fully backwards compatible.


git-svn-id: http://code.djangoproject.com/svn/django/trunk@6650 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2007-11-04 05:05:24 +00:00
..
ado_mssql Fixed #231: all fields that should take max_length now do. Thanks, Don Spaulding. 2007-09-19 23:33:57 +00:00
dummy Fixed #5255 -- It's now possible again to use Django without a database. This had temporarily gotten buggy after the django.core.management refactoring last week 2007-08-25 18:27:57 +00:00
mysql Fixed #5729 -- For MySQL (only), always delay the creation of foreign key 2007-11-04 05:05:24 +00:00
mysql_old Fixed #5729 -- For MySQL (only), always delay the creation of foreign key 2007-11-04 05:05:24 +00:00
oracle Fixed #231: all fields that should take max_length now do. Thanks, Don Spaulding. 2007-09-19 23:33:57 +00:00
postgresql Fixed #5710 -- Fixed a missing table name quoting in the postgresql backend, thanks davep@atomicdroplet.com. 2007-10-14 05:53:56 +00:00
postgresql_psycopg2 Added a BaseDatabaseOperations.last_executed_query() hook, which allows a database backend to specify how to get the last-executed query on a given cursor. Implemented it for the psycopg2 backend. This means that for psycopg2, the SQL statements in django.db.connection.queries will now reflect the exact SQL as sent to the server, instead of a naive and misleading string-interpolated version 2007-10-23 19:00:31 +00:00
sqlite3 Fixed #231: all fields that should take max_length now do. Thanks, Don Spaulding. 2007-09-19 23:33:57 +00:00
__init__.py Fixed #5729 -- For MySQL (only), always delay the creation of foreign key 2007-11-04 05:05:24 +00:00
creation.py Added django/db/backends/creation.py, with BaseCreation. Refs #5461 2007-09-14 16:44:53 +00:00
util.py Added a BaseDatabaseOperations.last_executed_query() hook, which allows a database backend to specify how to get the last-executed query on a given cursor. Implemented it for the psycopg2 backend. This means that for psycopg2, the SQL statements in django.db.connection.queries will now reflect the exact SQL as sent to the server, instead of a naive and misleading string-interpolated version 2007-10-23 19:00:31 +00:00