From 9b19fd7a76e8c439bfd4c178e6c35735419097a7 Mon Sep 17 00:00:00 2001 From: Karen Tracey Date: Wed, 27 May 2009 16:20:11 +0000 Subject: [PATCH] Fixed #11209 -- Added a note to doc on connection.queries that the logged sql may not inlude parameter quoting. git-svn-id: http://code.djangoproject.com/svn/django/trunk@10847 bcc190cf-cafb-0310-a4f2-bffc1f526a37 --- docs/faq/models.txt | 3 +++ 1 file changed, 3 insertions(+) diff --git a/docs/faq/models.txt b/docs/faq/models.txt index 822fdc9d77..1272f96f03 100644 --- a/docs/faq/models.txt +++ b/docs/faq/models.txt @@ -22,6 +22,9 @@ of dictionaries in order of query execution. Each dictionary has the following:: ``connection.queries`` includes all SQL statements -- INSERTs, UPDATES, SELECTs, etc. Each time your app hits the database, the query will be recorded. +Note that the raw SQL logged in ``connection.queries`` may not include +parameter quoting. Parameter quoting is performed by the database-specific +backend, and not all backends provide a way to retrieve the SQL after quoting. Can I use Django with a pre-existing database? ----------------------------------------------