magento学习笔记一

magento CURL

     $write=Mage::getSingleton("core/resource")->getConnection('core_write');
     $table=Mage::getSingleton('core/resource')->getTableName('abc');
    $write->insert($table,array('name'=>'hello'));


     $write=Mage::getSingleton("core/resource")->getConnection('core_write');
    $table =Mage::getSingleton('core/resource')->getTableName('abc');
   $write->update($table,array('name'=>'abc'),array('id=?'=>3));



       $write =Mage::getSingleton("core/resource")->getConnection('core_write');
    $table =Mage::getSingleton('core/resource')->getTableName('abc');
   $write->delete($table,array('id=?'=>3));


     $read=Mage::getSingleton("core/resource")->getConnection('core_read');
    $table =Mage::getSingleton('core/resource')->getTableName('abc');
       $result =$read->select()->from(array('main_table'=>$table))->where('main_table.id=?',3)->limit(1);
      $products=$read->fetchAll($result);

你可能感兴趣的:(magento学习笔记一)