加入对集合的请求

时间:2011-08-17 10:15:01

标签: php mysql magento

我想在Magento中对集合对象发出连接请求。我用这个:

$sets = Mage::getModel('magasin/geodecoupage')->getCollection()
        ->getSelect()
        ->joinLeft(array("i18n" => 'geo_decoupage_i18n'), 'i18n.geo_decoupage_id = main_table.id');

当我回显$ sets时,我得到了很好的sql请求,但是如何执行它并使用结果呢?

谢谢

1 个答案:

答案 0 :(得分:1)

您正在将Zend选择对象分配给$sets。以下是如何分配集合,然后再执行连接。

$sets = Mage::getModel('magasin/geodecoupage')->getCollection();
$sets->getSelect()
    ->joinLeft(array("i18n" => 'geo_decoupage_i18n'), 'i18n.geo_decoupage_id = main_table.id');

// and now for an example
foreach ($sets as $item) {
    var_dump($item->debug()); // prints out the loaded attributes and values
}