dony39517 2013-11-20 10:25
浏览 50
已采纳

如何使用symfony2和doctrine从数据库中手动查询

I'm trying to query the database in my user repository like this (symfony2):

namespace Doobin\UserBundle\Entity;

use Doctrine\ORM\EntityRepository;

class UserRepository extends EntityRepository
{
public function pageAccess($User=1,$Page='_home')
{
    $query="SELECT `user` FROM `vu001_user_permission` WHERE `user` = '$User' AND `path`='$Page'";
    $conn = Doctrine_Manager::getInstance()->connection();
    $stmt = $conn->prepare($query);
    $stmt->execute();
    return $stmt;
}

But it won't work. It stop working when it arives at the live $conn = Doctrine_Manager::getInstance()->connection();

I copied that from the symfony website tuturial.

I Also tried this too:

$em = $this->getDoctrine()->getEntityManager();
    $connection = $em->getConnection();
    $statement = $connection->prepare("SELECT `user` FROM `vu001_user_permission` WHERE `user` = '$User' AND `path`='$Page'");
    $statement->execute();
    $results = $statement->fetchAll();

It stop working when it arive to line $em = $this->getDoctrine()->getEntityManager();

And tried this too:

namespace Doobin\UserBundle\Entity;

use Doctrine\ORM\EntityRepository;

class UserRepository extends EntityRepository
{
public function pageAccess($User=1,$Page='_home')
{
return $this->getEntityManager()
        ->createQuery(
            'SELECT p FROM UserBundle:User p ORDER BY p.name ASC'
        )
        ->getResult();
}
}

$this->getEntityManager() now working, please help I'm so confiused. I checked everything.

Am I missing anything?

  • 写回答

2条回答 默认 最新

  • dongyi1939 2013-11-20 10:42
    关注

    It kind of looks like you are mixing symfony 1 and 2.

    In symfony2 you would most likely use the NativeQuery methods to achieve this. (see here http://docs.doctrine-project.org/en/latest/reference/native-sql.html)

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)

报告相同问题?

悬赏问题

  • ¥20 delta降尺度方法,未来数据怎么降尺度
  • ¥15 c# 使用NPOI快速将datatable数据导入excel中指定sheet,要求快速高效
  • ¥15 再不同版本的系统上,TCP传输速度不一致
  • ¥15 高德地图点聚合中Marker的位置无法实时更新
  • ¥15 DIFY API Endpoint 问题。
  • ¥20 sub地址DHCP问题
  • ¥15 delta降尺度计算的一些细节,有偿
  • ¥15 Arduino红外遥控代码有问题
  • ¥15 数值计算离散正交多项式
  • ¥30 数值计算均差系数编程