Prado\Data\TDbCommand::getDebugStatementText PHP Метод

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

public getDebugStatementText ( ) : String
Результат String prepared SQL text for debugging purposes.
    public function getDebugStatementText()
    {
        //if(Prado::getApplication()->getMode() === TApplicationMode::Debug)
        return $this->_statement instanceof PDOStatement ? $this->_statement->queryString : $this->getText();
    }