diff options
author | Phil Sturgeon <email@philsturgeon.co.uk> | 2011-02-01 00:26:46 +0100 |
---|---|---|
committer | Phil Sturgeon <email@philsturgeon.co.uk> | 2011-02-01 00:26:46 +0100 |
commit | 75f5ff5d99533a423e68686d89889d172c37d98e (patch) | |
tree | 0e60fae243a6e69e2e2bd03ecbf446cabb9592f5 /user_guide/database/utilities.html | |
parent | dda07e9efe683248c042307147b6573e104777ad (diff) | |
parent | c5bf616c68ab4d18777ba77d5eaf07384b392f78 (diff) |
Automated merge with http://hg.ellislab.com/CodeIgniter-Reactor
Diffstat (limited to 'user_guide/database/utilities.html')
-rw-r--r-- | user_guide/database/utilities.html | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/user_guide/database/utilities.html b/user_guide/database/utilities.html index d4296fe2e..ac3841641 100644 --- a/user_guide/database/utilities.html +++ b/user_guide/database/utilities.html @@ -102,13 +102,13 @@ foreach($dbs as $db)<br /> }</code> -<h2><a name="exists"></a>$this->db->database_exists();</h2> +<h2><a name="exists"></a>$this->dbutil->database_exists();</h2> <p>Sometimes it's helpful to know whether a particular database exists. Returns a boolean TRUE/FALSE. Usage example:</p> <code> -if ($this->db->database_exists('database_name'))<br /> +if ($this->dbutil->database_exists('database_name'))<br /> {<br /> // some code...<br /> } |