예제 #1
0
파일: DB.php 프로젝트: ramziammar/websites
 /**
  * Checks a table's integrity and repairs it if necessary.
  * @var string $tableName The name of the table.
  * @return boolean Return true if the table has integrity after the method is complete.
  */
 static function checkAndRepairTable($table)
 {
     return DB::$globalConn->checkAndRepairTable($table);
 }