From c0451036ac3823de742fecfc48234775e1cfd333 Mon Sep 17 00:00:00 2001 From: Adrian Holovaty Date: Tue, 2 Aug 2005 20:38:55 +0000 Subject: [PATCH] Changed faq to say explicitly that db.queries includes all SQL statements git-svn-id: http://code.djangoproject.com/svn/django/trunk@394 bcc190cf-cafb-0310-a4f2-bffc1f526a37 --- docs/faq.txt | 2 ++ 1 file changed, 2 insertions(+) diff --git a/docs/faq.txt b/docs/faq.txt index b2e6e7b5a6e..e3e8ab41622 100644 --- a/docs/faq.txt +++ b/docs/faq.txt @@ -286,6 +286,8 @@ dictionaries in order of query execution. Each dictionary has the following:: ``sql`` -- The raw SQL statement ``time`` -- How long the statement took to execute, in seconds. +``db.queries`` includes all SQL statements -- INSERTs, UPDATES, SELECTs, etc. + Can I use Django with a pre-existing database? ----------------------------------------------