UpdateDatabase.php
authorAlan Knowles <alan@roojs.com>
Thu, 23 Oct 2014 03:40:37 +0000 (11:40 +0800)
committerAlan Knowles <alan@roojs.com>
Thu, 23 Oct 2014 03:40:37 +0000 (11:40 +0800)
UpdateDatabase.php

index 7ae266b..8318c48 100644 (file)
@@ -724,9 +724,14 @@ class Pman_Core_UpdateDatabase extends Pman
         $db->query("show variables like 'innodb_file_per_table'");
         $db->fetch();
         var_dump($db);
+        // Value should == ON
         
         // I think it needs to look in the mysql directory.... to see if the idb exists..
-        SHOW TABLE STATUS;
+        $db = DB_DataObject::factory('core_enum');
+        $db->query("SHOW TABLE STATUS");
+        // Engine should be InnoDB - and file XXX.idb should exist...
+        
+