Yii2 调试 mysql 查询或 mysql_error 等效

Yii2 debug mysql queries or mysql_error equivalent

我在 common/models 中有一个名为 ValuesHelper 的模型助手,其代码片段如下:

 <?php
    namespace common\models;
    class ValueHelpers
    {
      /**
         * return the value of status by the its name string
         * example: 'Active'
         * @param string $status_name
         */
        public static function getStatusValue($sta8tus_name)
        {
            $connection = \Yii::$app->db;
            $sql = "SELECT id FROM status WHERE status_name=:status_name";      
            $command = $connection->createCommand($sql);
            $command->bindValue(':status_name', $status_name);  
// the issue in the next line   
            $result = $command->queryOne() or die($connection->getFirstError()."error");
            return $result['id'];
        }
    }

我不知道如何实现 like mysql_error() in or die() 子句。我试过 or die ($command->getFirstError()) 但也失败了。顺便说一句,我故意设置了错误的参数名称$sta8tus来格式化创建错误的环境。

为什么不查看日志而不是在那里放置骰子?

另请看这里:http://www.yiiframework.com/doc-2.0/yii-db-command.html#queryOne()-detail 如果命令有问题,则会抛出异常。您必须捕获该异常并使用它,这是最佳实践。

所以

try {
    $result = $command->queryOne();
} catch (yii\db\Exception $e) {
    do your stuff here
}