summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndrey Andreev <narf@devilix.net>2014-05-22 14:14:22 +0200
committerAndrey Andreev <narf@devilix.net>2014-05-22 14:14:22 +0200
commitce7634ff96a35e252035847907b53395e4ff6087 (patch)
tree2080dfc62a967aaef62e8d196802bee1a11a675a
parentbcd237e0044d950c0bc3e559b34d3c1b8ea51deb (diff)
parent0d7344eb65aa652cb4dc36e9412593101b3461b3 (diff)
Merge pull request #3059 from manuganji/patch-1
Update profiling.rst
-rw-r--r--user_guide_src/source/general/profiling.rst6
1 files changed, 4 insertions, 2 deletions
diff --git a/user_guide_src/source/general/profiling.rst b/user_guide_src/source/general/profiling.rst
index f29af8102..63a261cc6 100644
--- a/user_guide_src/source/general/profiling.rst
+++ b/user_guide_src/source/general/profiling.rst
@@ -82,6 +82,8 @@ Key Description
hidden.
======================= =================================================================== ========
-.. note:: Disabling the **save_queries** setting in your database configuration
+.. note:: Disabling the (save_queries)[http://ellislab.com/codeigniter/user-guide/database/configuration.html] setting in your database configuration
will also effectively disable profiling for database queries and render
- the 'queries' setting above useless. \ No newline at end of file
+ the 'queries' setting above useless. You can optionally override this
+ setting with `$this->db->save_queries = TRUE;`. Without this setting you
+ won't be able to view the queries or the (last_query)[http://ellislab.com/codeigniter/user-guide/database/helpers.html].