Process/FixMysqlCharset.php
authorAlan <alan@roojs.com>
Wed, 23 Aug 2023 02:25:49 +0000 (10:25 +0800)
committerAlan <alan@roojs.com>
Wed, 23 Aug 2023 02:25:49 +0000 (10:25 +0800)
Process/FixMysqlCharset.php

index ddf8f5a..f4bc159 100644 (file)
@@ -106,10 +106,10 @@ class Pman_Core_Process_FixMysqlCharset extends Pman_Core_Cli {
     {
         $t = DB_DataObject::factory($tbl);
         DB_DataObject::debugLevel(1);
-        $t->query("SHOW TRIGGERS FROM {$t->databaseNickname()} where `table` = '{$tbl}'");
-        if (!$t->find()) {
+        if (!$t->query("SHOW TRIGGERS FROM {$t->databaseNickname()} where `table` = '{$tbl}'")) {
             return;
         }
+        
         while ($t->fetch()) {
             print_r($t->toArray());
         }