我正在开发一个基本的网络应用程序在我的工作。我必须使用一些sql服务器视图。我决定尝试原生查询,一旦测试了它的功能,就试着编写一些类来编写所有查询的代码,然后有点忘记了它们的实现。
所以我的问题是,我在Acme/MyBundle/ Entity /View1.php中有一个实体。这个实体已经获得了与表匹配的所有属性以及它的getter和setter。我猜这个实体很好地映射到了数据库(Doctrine不能很容易地与视图一起工作)。
我的目标是让Controller能够从这些视图(SQL SERVER)中获取一些数据,并将其返回给视图(twig),这样它就可以显示信息。
$returned_atts = array(
"att1" => $result[0]->getAttribute1(), //getter from the entity
"att2" => $result[1]->getAttribute2(), //getter from the entity
);
return $returned_atts;`$sql = "SELECT [Attribute1],[Attribute2],[Attribute3] FROM [TEST].[dbo].[TEST_VIEW1]"; //THIS IS THE SQL SERVER QUERY
$rsm = new ResultSetMapping($em); //result set mappin object
$rsm->addEntityResult('Acme\MyBundle\Entity\View1', 'view1'); //entity which is based on
$rsm->addFieldResult('view1', 'Attribute1', 'attribute1'); //only choose these 3 attributes among the whole available
$rsm->addFieldResult('view1', 'Attribute2', 'attribute2');
$rsm->addFieldResult('view1', 'Attribute3', 'attribute3');
//rsm built
$query = $em->createNativeQuery($sql, $rsm); //execute the query
$result = $query->getResult(); //get the array应该可以直接从getResult()方法返回数组,不是吗?最让我头疼的是,我怎么才能访问attribute1、attriute2和attriute2?
$returned_atts = array(
"att1" => $result[0]->getAttribute1(), //getter from the entity
"att2" => $result[1]->getAttribute2(), //getter from the entity
);
return $returned_atts;`发布于 2015-05-18 22:39:12
如果希望结果为数组,则不需要使用ResultSetMapping。
$sql = " SELECT * FROM some_table";
$stmt = $this->getDoctrine()->getEntityManager()->getConnection()->prepare($sql);
$stmt->execute();
$result = $stmt->fetchAll();这是控制器操作的一个基本示例。您可以转储结果,使用var_dump()查看如何访问特定的字段值。
这里有更多的例子Doctrine raw sql
https://stackoverflow.com/questions/30300919
复制相似问题