From e5bb936f808bfd39a6ba8cbe1fc2ddbcf9bf502f Mon Sep 17 00:00:00 2001 From: admin Date: Wed, 27 Sep 2006 00:31:22 +0000 Subject: --- user_guide/database/utilities.html | 16 +++++++++++++++- 1 file changed, 15 insertions(+), 1 deletion(-) (limited to 'user_guide/database/utilities.html') diff --git a/user_guide/database/utilities.html b/user_guide/database/utilities.html index aa2ed3dcd..775c3f239 100644 --- a/user_guide/database/utilities.html +++ b/user_guide/database/utilities.html @@ -176,6 +176,20 @@ if ($this->dbutil->optimize_table('table_name'))
+

$this->dbutil->optimize_database();

+ +

Permits you to optimize the database your DB class is currently connected to. Returns an array containing the returned status messages or FALSE on failure.

+ + +$result = $this->dbutil->optimize_databas();
+
+if ($result !== FALSE)
+{
+    print_r($result);
+} +
+ +

Note: Not all database platforms support table optimization.

@@ -190,7 +204,7 @@ Previous Topic:  Custom Function CallsTop of Page   ·   User Guide Home   ·   -Next Topic:  Email Class +Next Topic:  Database Export Class

Code Igniter  ·  Copyright © 2006  ·  pMachine, Inc.

-- cgit v1.2.3-24-g4f1b