From b6cd79c40dd39cd6fb36b84cd5c23558854ea1ad Mon Sep 17 00:00:00 2001
From: Derek Allard
Permits you to create the database specified in the first parameter. Returns TRUE/FALSE based on success or failure:
-if ($this->dbutil->create_database('my_db'))
+if ($this->dbforge->create_database('my_db'))
{
echo 'Database created!';
}
@@ -103,7 +103,7 @@ already be running, since the forge class relies on it.
Permits you to drop the database specified in the first parameter. Returns TRUE/FALSE based on success or failure:
-if ($this->dbutil->drop_database('my_db'))
+if ($this->dbforge->drop_database('my_db'))
{
echo 'Database deleted!';
}
--
cgit v1.2.3-24-g4f1b