コード例 #1
0
ファイル: _InstallController.php プロジェクト: kosenka/yboard
 function checkModuleInstalled()
 {
     $tableName = $this->getTableName();
     // check if table exists
     $tableExists = new CDbCommand(Yii::app()->getDb(), "\n            show tables like '{$tableName}'\n        ");
     try {
         $exists = $tableExists->queryColumn();
     } catch (Exception $e) {
         $exists = false;
     }
     return $exists ? true : false;
 }
コード例 #2
0
ファイル: Awecms.php プロジェクト: juankie/gestcb9git
 public static function doesTableExist($tableName)
 {
     $tableExists = new CDbCommand(Yii::app()->getDb(), "\n            show tables like '{$tableName}'\n        ");
     try {
         $exists = $tableExists->queryColumn();
     } catch (Exception $e) {
         $exists = false;
     }
     return $exists ? true : false;
 }