diff options
author | Derek Jones <derek.jones@ellislab.com> | 2008-03-11 17:20:29 +0100 |
---|---|---|
committer | Derek Jones <derek.jones@ellislab.com> | 2008-03-11 17:20:29 +0100 |
commit | 25b24d2985050fb4de88c43ffdf892f4d22f922d (patch) | |
tree | 9f743d4c9d13411a2f13d0e0297bc0571579aa26 /user_guide | |
parent | 8b2f19b7b2671526c8e5eca74251b6339932e5bf (diff) |
added missing DB config items from sample array in connecting documentation
Diffstat (limited to 'user_guide')
-rw-r--r-- | user_guide/database/connecting.html | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/user_guide/database/connecting.html b/user_guide/database/connecting.html index 2da062550..6cdd109d6 100644 --- a/user_guide/database/connecting.html +++ b/user_guide/database/connecting.html @@ -102,6 +102,10 @@ $config['dbdriver'] = "mysql";<br /> $config['dbprefix'] = "";<br />
$config['pconnect'] = FALSE;<br />
$config['db_debug'] = TRUE;<br />
+$config['cache_on'] = FALSE;<br />
+$config['cachedir'] = "";<br />
+$config['char_set'] = "utf8";<br />
+$config['dbcollat'] = "utf8_general_ci";<br />
<br />
$this->load->database(<samp>$config</samp>);</code>
|