Doctrine\DBAL\Statement::errorInfo PHP Метод

errorInfo() публичный Метод

Fetches extended error information associated with the last operation on the statement.
public errorInfo ( ) : array
Результат array
    public function errorInfo()
    {
        return $this->stmt->errorInfo();
    }

Usage Example

 /**
  * @return mixed
  */
 function errorInfo()
 {
     return $this->stmt->errorInfo();
 }