Doctrine を使用して Symfony2 でカスタム SQL クエリを作成するにはどうすればよいですか? またはDoctrineがなくても、私は気にしません。
次のようには機能しません。
$em = $this->getDoctrine()->getEntityManager();
$em->createQuery($sql);
$em->execute();
ありがとう。
Entity Manager から 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 は、必要なほぼすべてのクエリを処理できます。
動作するこのコードを実行できます:
$em = $this->getDoctrine()->getEntityManager();
$result= $em->createQuery($sql)->getResult();