From 25b24d2985050fb4de88c43ffdf892f4d22f922d Mon Sep 17 00:00:00 2001 From: Derek Jones Date: Tue, 11 Mar 2008 16:20:29 +0000 Subject: added missing DB config items from sample array in connecting documentation --- user_guide/database/connecting.html | 4 ++++ 1 file changed, 4 insertions(+) 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";
$config['dbprefix'] = "";
$config['pconnect'] = FALSE;
$config['db_debug'] = TRUE;
+$config['cache_on'] = FALSE;
+$config['cachedir'] = "";
+$config['char_set'] = "utf8";
+$config['dbcollat'] = "utf8_general_ci";

$this->load->database($config); -- cgit v1.2.3-24-g4f1b