summaryrefslogtreecommitdiffstats
path: root/user_guide/database/forge.html
diff options
context:
space:
mode:
authorDerek Allard <derek.allard@ellislab.com>2008-02-01 01:39:51 +0100
committerDerek Allard <derek.allard@ellislab.com>2008-02-01 01:39:51 +0100
commitb6cd79c40dd39cd6fb36b84cd5c23558854ea1ad (patch)
treeaeac621e1c222d93808de57d9648467e7c0414b7 /user_guide/database/forge.html
parent7b80700a88e3e3a9ad46fe484e1cbfc3bd353b91 (diff)
change dbutil to dbforge in docs
Diffstat (limited to 'user_guide/database/forge.html')
-rw-r--r--user_guide/database/forge.html4
1 files changed, 2 insertions, 2 deletions
diff --git a/user_guide/database/forge.html b/user_guide/database/forge.html
index f234b8a1d..7cbaa11a7 100644
--- a/user_guide/database/forge.html
+++ b/user_guide/database/forge.html
@@ -91,7 +91,7 @@ already be running, since the forge class relies on it.</p>
<p>Permits you to create the database specified in the first parameter. Returns TRUE/FALSE based on success or failure:</p>
-<code>if ($this->dbutil->create_database('my_db'))<br />
+<code>if ($this->dbforge->create_database('my_db'))<br />
{<br />
&nbsp;&nbsp;&nbsp; echo 'Database created!';<br />
}</code>
@@ -103,7 +103,7 @@ already be running, since the forge class relies on it.</p>
<p>Permits you to drop the database specified in the first parameter. Returns TRUE/FALSE based on success or failure:</p>
-<code>if ($this->dbutil->drop_database('my_db'))<br />
+<code>if ($this->dbforge->drop_database('my_db'))<br />
{<br />
&nbsp;&nbsp;&nbsp; echo 'Database deleted!';<br />
}</code>