. */ namespace Doctrine\ORM\Query\Exec; use Doctrine\DBAL\Connection, Doctrine\ORM\Query\AST\SelectStatement, Doctrine\ORM\Query\SqlWalker; /** * Executor that executes the SQL statement for simple DQL SELECT statements. * * @license http://www.opensource.org/licenses/lgpl-license.php LGPL * @author Roman Borschel * @link www.doctrine-project.org * @since 2.0 */ class SingleSelectExecutor extends AbstractSqlExecutor { public function __construct(SelectStatement $AST, SqlWalker $sqlWalker) { $this->_sqlStatements = $sqlWalker->walkSelectStatement($AST); } /** * {@inheritDoc} */ public function execute(Connection $conn, array $params, array $types) { return $conn->executeQuery($this->_sqlStatements, $params, $types, $this->queryCacheProfile); } }