1

这是我第一次使用 symfony 2。对于数据库集成,我正在考虑使用推进,因为我的学说和注释对我来说似乎真的很困难。但在我看来,要进行查询,您必须使用推进自己的功能。我用过codeigniter。在 codeigniter 中,我用来发送查询字符串,它用来向我发送数据。在推进 symfony 2 中有类似的东西吗?喜欢 -

$query = 'select * from table where column1 natural join column2';
$this->db->query($query);
4

1 回答 1

1

您应该查看 sf2 的文档:
http ://symfony.com/doc/current/book/propel.html

如果要使用原始 SQL:

$em = $this->getDoctrine()->getEntityManager();
$connection = $em->getConnection();
$statement = $connection->prepare("SELECT something FROM somethingelse");
$statement->execute();
$results = $statement->fetchAll();

或“推进方式”:

$connection = Propel::getConnection();
$query = 'SELECT MAX(?) AS max FROM ?';
$statement = $connection->prepareStatement($query);
$statement->setString(1, ArticlePeer::CREATED_AT);
$statement->setString(2, ArticlePeer::TABLE_NAME);
$resultset = $statement->executeQuery();
$resultset->next();
$max = $resultset->getInt('max');
于 2013-11-15T01:39:31.583 回答