gpt4 book ai didi

doctrine-orm - 教义 2 - 获取所有记录

转载 作者:行者123 更新时间:2023-12-03 12:04:42 26 4
gpt4 key购买 nike

有谁知道有没有使用 Doctrine 而不使用 DQL 的快速方法来获取表中的所有记录。

我错过了什么,还是你需要在类里面编写公共(public)函数?

最佳答案

如果你有一个实体类( Doctrine Repository manual ):

$records = $em->getRepository("Entities\YourTargetEntity")->findAll();

如果您没有实体类( PDO manual ):
$pdo = $em->getCurrentConnection()->getDbh();
$result = $pdo->query("select * from table"); //plain sql query here, it's just PDO
$records = $pdo->fetchAll();

关于doctrine-orm - 教义 2 - 获取所有记录,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7240341/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com