Symfony2 & Doctrine: Create custom SQL-Query

2022-08-30 17:22:17

如何使用 Doctrine 在 Symfony2 中创建自定义 SQL 查询?或者没有教义,我不在乎。

不是这样工作的:

    $em = $this->getDoctrine()->getEntityManager();
    $em->createQuery($sql);
    $em->execute();

谢谢。


答案 1

您可以直接从实体管理器中获取 Connection 对象,并直接通过该对象运行 SQL 查询:

$em = $this->getDoctrine()->getManager(); // ...or getEntityManager() prior to Symfony 2.1
$connection = $em->getConnection();
$statement = $connection->prepare("SELECT something FROM somethingelse WHERE id = :id");
$statement->bindValue('id', 123);
$statement->execute();
$results = $statement->fetchAll();

但是,除非真的有必要,否则我建议不要这样做...Doctrine 的 DQL 几乎可以处理您可能需要的任何查询。

官方文件:https://www.doctrine-project.org/projects/doctrine-dbal/en/2.9/reference/data-retrieval-and-manipulation.html


答案 2

你可以执行这个代码,它的工作原理:

$em = $this->getDoctrine()->getEntityManager();
$result= $em->createQuery($sql)->getResult();

推荐