1

如何在 Symfony 2 中运行普通的 mysql 查询,就像这样:

$query = $this->db->run('select * from table');
$rs = $this->db->fetchAll($query);

foreach($rs as $r) {
    ...
}
4

1 回答 1

1

在这里通过一些示例很好地解释了如何做到这一点:

http://docs.doctrine-project.org/projects/doctrine-orm/en/2.1/reference/native-sql.html

于 2012-09-19T09:34:50.430 回答