Magento:从自定义查询中获取集合

时间:2011-09-01 17:34:00

标签: magento

我们可以在Magento中编写自定义查询:

$write = Mage::getSingleton('core/resource')->getConnection('core_write');
$write->query("insert into tablename values ('aaa','bbb','ccc')"); 

现在,当我从Mage::getModel()->getCollection获取查询时,如何将查询输出收集到一个集合中?

1 个答案:

答案 0 :(得分:1)

创建一个扩展其中一个基本集合对象的对象,并将您的查询添加到load方法中。