當前位置: 首頁>>代碼示例>>PHP>>正文


PHP Varien_Db_Select::insertFromSelect方法代碼示例

本文整理匯總了PHP中Varien_Db_Select::insertFromSelect方法的典型用法代碼示例。如果您正苦於以下問題:PHP Varien_Db_Select::insertFromSelect方法的具體用法?PHP Varien_Db_Select::insertFromSelect怎麽用?PHP Varien_Db_Select::insertFromSelect使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在Varien_Db_Select的用法示例。


在下文中一共展示了Varien_Db_Select::insertFromSelect方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: insertFromSelect

 /**
  * Insert data from select statement of read adapter to
  * destination table related with index adapter
  *
  * @param Varien_Db_Select $select
  * @param string $destTable
  * @param array $columns
  * @param bool $readToIndex data migration direction (true - read=>index, false - index=>read)
  * @return Mage_Index_Model_Resource_Abstract
  */
 public function insertFromSelect($select, $destTable, array $columns, $readToIndex = true)
 {
     if ($readToIndex) {
         $from = $this->_getWriteAdapter();
         $to = $this->_getIndexAdapter();
     } else {
         $from = $this->_getIndexAdapter();
         $to = $this->_getWriteAdapter();
     }
     if ($from === $to) {
         $query = $select->insertFromSelect($destTable, $columns);
         $to->query($query);
     } else {
         $stmt = $from->query($select);
         $data = array();
         $counter = 0;
         while ($row = $stmt->fetch(PDO::FETCH_NUM)) {
             $data[] = $row;
             $counter++;
             if ($counter > 2000) {
                 $to->insertArray($destTable, $columns, $data);
                 $data = array();
                 $counter = 0;
             }
         }
         if (!empty($data)) {
             $to->insertArray($destTable, $columns, $data);
         }
     }
     return $this;
 }
開發者ID:okite11,項目名稱:frames21,代碼行數:41,代碼來源:Abstract.php

示例2: getInsertFromSelectUsingAnalytic

 /**
  *
  * Returns Insert From Select On Duplicate query with analytic functions
  *
  * @param Varien_Db_Select $select
  * @param string $table
  * @param array $table
  * @return string
  */
 public function getInsertFromSelectUsingAnalytic(Varien_Db_Select $select, $table, $fields)
 {
     return $select->insertFromSelect($table, $fields);
 }
開發者ID:blazeriaz,項目名稱:youguess,代碼行數:13,代碼來源:Mysql4.php


注:本文中的Varien_Db_Select::insertFromSelect方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。