summaryrefslogtreecommitdiffstats
path: root/application/config
diff options
context:
space:
mode:
authorAndrey Andreev <narf@devilix.net>2014-01-20 09:30:11 +0100
committerAndrey Andreev <narf@devilix.net>2014-01-20 09:30:11 +0100
commitebdb4ea3101f956d02571cd01ec89bcd0c44f8bb (patch)
tree43689c40820831ff324ed2039d19e775085316f8 /application/config
parentf375272f3f9eaefe3b10f4d00b3fbe18faa77da5 (diff)
parent1c8245a22874051f5342824d5299d6ad55f4995c (diff)
Merge branch 'develop' into feature/output_compressed_cache
Diffstat (limited to 'application/config')
-rw-r--r--application/config/database.php10
1 files changed, 9 insertions, 1 deletions
diff --git a/application/config/database.php b/application/config/database.php
index f0b839757..44fe307d6 100644
--- a/application/config/database.php
+++ b/application/config/database.php
@@ -68,6 +68,13 @@
| ['stricton'] TRUE/FALSE - forces 'Strict Mode' connections
| - good for ensuring strict SQL while developing
| ['failover'] array - A array with 0 or more data for connections if the main should fail.
+| ['save_queries'] TRUE/FALSE - Whether to "save" all executed queries.
+| NOTE: Disabling this will also effectively disable both
+| $this->db->last_query() and profiling of DB queries.
+| When you run a query, with this setting set to TRUE (default),
+| CodeIgniter will store the SQL statement for debugging purposes.
+| However, this may cause high memory usage, especially if you run
+| a lot of SQL queries ... disable this to avoid that problem.
|
| The $active_group variable lets you choose which connection group to
| make active. By default there is only one group (the 'default' group).
@@ -98,7 +105,8 @@ $db['default'] = array(
'encrypt' => FALSE,
'compress' => FALSE,
'stricton' => FALSE,
- 'failover' => array()
+ 'failover' => array(),
+ 'save_queries' => TRUE
);
/* End of file database.php */