Symfony Propel标准

时间:2009-01-19 11:18:02

标签: mysql symfony1 criteria propel

有没有办法将MySQL对象转换为条件对象?我试过这个问题:

select 
  p.disrepid, 
  p.subject, p.body, 
  c.disrepid as disrepid1, 
  c.subject as subject1, 
  c.body as body1 
from discusreply as p, discusreply as c 
where p.distopid=' . $this->id . ' 
  and (c.disrepid = p.parentid or c.parentid = p.distopid) 
order by p.disrepid ASC

我尝试将此查询转换为Criteria,但没有发生任何事情。我希望这个标准对象将其传递给Pager类以完成分页。 $pager->setCriteria($c);

3 个答案:

答案 0 :(得分:6)

您可以使用自己的SQL执行查询,但没有自动方法将sql转换为Criteria对象。

$con = Propel::getConnection(DATABASE_NAME);
$sql = "SELECT books.* FROM books 
    WHERE NOT EXISTS (SELECT id FROM review WHERE book_id = book.id)";
$stmt = $con->createStatement();
$rs = $stmt->executeQuery($sql, ResultSet::FETCHMODE_NUM);
$books = BookPeer::populateObjects($rs);

这会将Criterion对象全部绕过。您提到了需要标准对象,以便将其提供给寻呼机。您可以在寻呼机中设置自定义选择方法,然后执行自定义查询。如果你需要将参数传递给它,我建议使用你自己的pager类扩展sfPropel,该类可以选择将参数传递给你的peer select方法,这样你就不必使用Criteria对象了。作为一种快速替代方案,您可以使用Criteria作为选择参数的容器来执行此类操作:

$c = new Criteria();
$c->add(DiscussreplyPeer::ID, $myId);
$pager = new sfPropelPager();
$pager->setCriteria($c);
$pager->setPeerMethod('getReplies');

然后在你的同伴班上:

public static function getReplies(Criteria $c) {
    $map = $c->getMap();
    $replyId = $map[DiscussreplyPeer::ID]->getValue();

    $con = Propel::getConnection(DATABASE_NAME);
    $sql = "select p.disrepid, p.subject, p.body, c.disrepid as disrepid1, c.subject as subject1, c.body as body1 from discusreply as p, discusreply as c where p.distopid=? and (c.disrepid = p.parentid or c.parentid = p.distopid) order by p.disrepid ASC";

    $stmt = $con->prepareStatement($sql);
    $stmt->setString(1, $replyId);

    $rs = $stmt->executeQuery();

    $results = array();
    while ($rs->next()) {
      // for example
        $results['disrepid'] = $rs->getInt('disrepid');
    }

    return $results;
}

有关推进和symfony的更多提示,请访问: http://stereointeractive.com/blog/2007/06/12/propel-queries-using-custom-sql-peer-classes-and-criterion-objects/

答案 1 :(得分:2)

This site将有助于学习编写标准 - 您可以使用它从伪SQL生成标准代码。我还建议抓住Symfony/Propel cheat sheets

特别是对于您的查询,您需要这样的内容:

$c = new Criteria();
$c->addJoin(discusreply::DISREPID, discusreply::PARENTID, Criteria::INNER_JOIN);  
$c->clearSelectColumns();
$c->addSelectColumn(discusreplyPeer::Disrepid); 
...
$c->add(discusreplyPeer::DISTOPID, $this->id, Criteria::EQUAL);
... 
$c->addAscendingOrderByColumn(discusreply::DISREPID);

我不确定Criteria系统是否支持内连接的多个子句,因此您可能必须恢复到此查询的ad-hoc SQL(如果确实如此,我很想知道如何)。以下代码将创建一个类似于从简单数据库抽象层获得的ResultSet对象。

$sql = "SELECT ...";
$dbh = Propel::getConnection([DB]);
$sth = $dbh->createStatement();
$res = $sth->executeQuery($sql, ResultSet::FETCHMODE_NUM);

我不认为在这样的查询上使用ad-hoc方法有很多缺点,因为当您只返回特定列时,您将不得不处理ResultSet对象而不是特定于表的对象。 / p>

答案 2 :(得分:2)

您可以尝试使用this site从sql自动生成条件。