From fd2750b8f85b4f204e536d255742e18018c3f1f2 Mon Sep 17 00:00:00 2001 From: admin Date: Fri, 6 Oct 2006 17:29:12 +0000 Subject: --- user_guide/database/utilities.html | 10 ++++------ user_guide/general/controllers.html | 13 ++++++++----- 2 files changed, 12 insertions(+), 11 deletions(-) (limited to 'user_guide') 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

Initializing the Utility Class

-

Important:  This class must be initialized independently since it is a separate class from the main Database class. -More info below...

+

Important:  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.

-

To initialize this class please use the following code:

+

Load the Utility Class as follows:

-$this->load->dbutil() - -

You can also autoload this class from within your config/autoload.php file by specifying dbutil in the $autoload['libraries'] array.

+$this->db->load_utilities()

Once initialized you will access the functions using the $this->dbutil object:

diff --git a/user_guide/general/controllers.html b/user_guide/general/controllers.html index 0bfe973e5..20f207f5f 100644 --- a/user_guide/general/controllers.html +++ b/user_guide/general/controllers.html @@ -372,18 +372,16 @@ is a list of reserved names. Do not name your controller functions any of these


If you are running PHP 4 there are some additional reserved names. These ONLY apply if you are running PHP 4.

@@ -397,12 +395,17 @@ is a list of reserved names. Do not name your controller functions any of these
  • helpers
  • language
  • library
  • +
  • model
  • plugin
  • plugins
  • scaffolding
  • script
  • view
  • vars
  • +
  • _ci_autoloader
  • +
  • _ci_load
  • +
  • _ci_object_to_array
  • +
  • _ci_set_view_path
  • -- cgit v1.2.3-24-g4f1b