1 | <?php |
||
18 | class Command extends \yii\db\Command |
||
19 | { |
||
20 | /** |
||
21 | * Performs the actual DB query of a SQL statement. |
||
22 | * @param string $method method of PDOStatement to be called |
||
23 | * @param integer $fetchMode the result fetch mode. Please refer to [PHP manual](http://www.php.net/manual/en/function.PDOStatement-setFetchMode.php) |
||
24 | * for valid fetch modes. If this parameter is null, the value set in [[fetchMode]] will be used. |
||
25 | * @return mixed the method execution result |
||
26 | * @throws yii\db\Exception if the query causes any problem |
||
27 | * @since 2.0.1 this method is protected (was private before). |
||
28 | */ |
||
29 | 298 | protected function queryInternal($method, $fetchMode = null) |
|
57 | } |
||
58 |