如何在 Symfony 2 中运行普通的 mysql 查询,就像这样:
$query = $this->db->run('select * from table');
$rs = $this->db->fetchAll($query);
foreach($rs as $r) {
...
}
在这里通过一些示例很好地解释了如何做到这一点:
http://docs.doctrine-project.org/projects/doctrine-orm/en/2.1/reference/native-sql.html