summaryrefslogtreecommitdiffstats
path: root/user_guide/database/utilities.html
diff options
context:
space:
mode:
Diffstat (limited to 'user_guide/database/utilities.html')
-rw-r--r--user_guide/database/utilities.html10
1 files changed, 4 insertions, 6 deletions
diff --git a/user_guide/database/utilities.html b/user_guide/database/utilities.html
index fcfc24945..f815039cb 100644
--- a/user_guide/database/utilities.html
+++ b/user_guide/database/utilities.html
@@ -85,14 +85,12 @@ Database Utility Class
<a name="init"></a>
<h2>Initializing the Utility Class</h2>
-<p class="important"><strong>Important:</strong>&nbsp; This class must be initialized independently since it is a separate class from the main Database class.
-More info below...</p>
+<p class="important"><strong>Important:</strong>&nbsp; In order to initialize the Utility class, your database driver must
+already be running, since the utilities class is loaded from within the main DB class.</p>
-<p>To initialize this class please use the following code:</p>
+<p>Load the Utility Class as follows:</p>
-<code>$this->load->dbutil()</code>
-
-<p>You can also autoload this class from within your <dfn>config/autoload.php</dfn> file by specifying <kbd>dbutil</kbd> in the <samp>$autoload['libraries']</samp> array.</p>
+<code>$this->db->load_utilities()</code>
<p>Once initialized you will access the functions using the <dfn>$this->dbutil</dfn> object:</p>