From ee484f1c483d103a56b3d4cf43d929eaa890811b Mon Sep 17 00:00:00 2001 From: Adrian Holovaty Date: Fri, 3 Feb 2006 15:38:14 +0000 Subject: [PATCH] Made small clarification to docs/faq.txt git-svn-id: http://code.djangoproject.com/svn/django/trunk@2240 bcc190cf-cafb-0310-a4f2-bffc1f526a37 --- docs/faq.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/docs/faq.txt b/docs/faq.txt index ab7c4c0194..0dd4cbcc37 100644 --- a/docs/faq.txt +++ b/docs/faq.txt @@ -396,6 +396,7 @@ dictionaries in order of query execution. Each dictionary has the following:: ``time`` -- How long the statement took to execute, in seconds. ``db.queries`` includes all SQL statements -- INSERTs, UPDATES, SELECTs, etc. +Each time your app hits the database, the query will be recorded. Can I use Django with a pre-existing database? ----------------------------------------------