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


PHP Zend_Db_Select::assemble方法代碼示例

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


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

示例1: assemble

 /**
  * Performs a validation on the select query before passing back to the parent class.
  * Ensures that only columns from the primary Zend_Db_Table are returned in the result.
  *
  * @return string|null This object as a SELECT string (or null if a string cannot be produced)
  */
 public function assemble()
 {
     $fields = $this->getPart(Zend_Db_Table_Select::COLUMNS);
     $primary = $this->_info[Zend_Db_Table_Abstract::NAME];
     $schema = $this->_info[Zend_Db_Table_Abstract::SCHEMA];
     if (count($this->_parts[self::UNION]) == 0) {
         // If no fields are specified we assume all fields from primary table
         if (!count($fields)) {
             $this->from($primary, self::SQL_WILDCARD, $schema);
             $fields = $this->getPart(Zend_Db_Table_Select::COLUMNS);
         }
         $from = $this->getPart(Zend_Db_Table_Select::FROM);
         if ($this->_integrityCheck !== false) {
             foreach ($fields as $columnEntry) {
                 list($table, $column) = $columnEntry;
                 // Check each column to ensure it only references the primary table
                 if ($column) {
                     if (!isset($from[$table]) || $from[$table]['tableName'] != $primary) {
                         require_once PHP_LIBRARY_PATH . 'Zend/Db/Table/Select/Exception.php';
                         throw new Zend_Db_Table_Select_Exception('Select query cannot join with another table');
                     }
                 }
             }
         }
     }
     return parent::assemble();
 }
開發者ID:netixx,項目名稱:Stock,代碼行數:33,代碼來源:Select.php

示例2: __construct

 /**
  * Constructor.
  *
  * @param Zend_Db_Select $select The select query
  */
 public function __construct(Zend_Db_Select $select)
 {
     $this->_select = $select;
     $this->_cacheIdentifier = md5($select->assemble());
 }
開發者ID:siite,項目名稱:choose-sa-cloud,代碼行數:10,代碼來源:DbSelect.php

示例3: setup2

 private function setup2(Zend_Db_Select $select, $columes = null)
 {
     $conn = $select->getAdapter();
     $this->setConnection($conn);
     $extFields = array();
     if ($columes == null) {
         $sql = $select->assemble();
         $db = $this->conn;
         $columes = $this->_getColumns($sql, $db);
     }
     foreach ($columes as $field) {
         $extFields[]['field'] = $field;
     }
     $this->_setFields($extFields);
     $this->strTable = " (   {$sql}    ) AS tableName ";
 }
開發者ID:hugi2002,項目名稱:mylibrary,代碼行數:16,代碼來源:Abstract.php

示例4: testCacheIdentifierIsHashOfAssembledSelect

 /**
  * @group ZF-6989
  */
 public function testCacheIdentifierIsHashOfAssembledSelect()
 {
     $dbAdapter = $this->getMockForAbstractClass('Zend_Db_Adapter_Abstract', array(''), '', false);
     $select = new Zend_Db_Select($dbAdapter);
     $select->from('ZF_6989');
     $paginatorAdapter = new Zend_Paginator_Adapter_DbSelect($select);
     $this->assertSame(md5($select->assemble()), $paginatorAdapter->getCacheIdentifier(), 'Cache identifier incorrect!');
 }
開發者ID:crodriguezn,項目名稱:crossfit-milagro,代碼行數:11,代碼來源:DbSelectTest.php

示例5: fetchEach

 /**
  * @param \Zend_Db_Select $select
  * @param array $params
  * @return \Generator
  * @throws Exception
  */
 public function fetchEach(\Zend_Db_Select $select, $params = [])
 {
     $sql = $select->assemble();
     $statement = $this->getReadAdapter()->query($sql, $params);
     while ($record = $statement->fetch()) {
         (yield $record);
     }
 }
開發者ID:cipherpols,項目名稱:cze,代碼行數:14,代碼來源:Dataset.php

示例6: removeAllEntriesWhereSubSelect

 /**
  * Removes a all cache entries matching given constraint.
  *
  * @param Zend_Db_Select $select Select statement to use as subselect
  *  The statement MUST return a list of document ids
  * @return void
  */
 public function removeAllEntriesWhereSubSelect($select)
 {
     $where = 'document_id IN (' . $select->assemble() . ')';
     $this->_table->delete($where);
 }
開發者ID:alexukua,項目名稱:opus4,代碼行數:12,代碼來源:Cache.php

示例7: assemble

 /**
  * @return String
  */
 public function assemble()
 {
     return $this->_selector->assemble();
 }
開發者ID:rocknoon,項目名稱:TCVM,代碼行數:7,代碼來源:Model.php

示例8: setup2

 private function setup2(Zend_Db_Select $select, $columes = null)
 {
     $conn = $select->getAdapter();
     $this->setConnection($conn);
     if ($conn instanceof Zend_Db_Adapter_Pdo_Mysql) {
         $this->_drivertype = 'mysql';
     }
     $extFields = array();
     if ($columes == null) {
         $sql = $select->assemble();
         $db = $this->conn;
         if ($db instanceof Zend_Db_Adapter_Sqlsrv) {
             $columes = $this->_getSqlsrvColumns($sql, $db);
         } elseif ($db instanceof Zend_Db_Adapter_Pdo_Mysql) {
             $columes = $this->_getMysqlColumns($sql, $db);
         }
     }
     foreach ($columes as $field) {
         $extFields[]['field'] = $field;
     }
     $this->_setFields($extFields);
     $this->strTable = " (   {$sql}    ) AS tableName ";
 }
開發者ID:hugi2002,項目名稱:mylibrary,代碼行數:23,代碼來源:Abstract.php

示例9: setSubSelectNotExists

 /**
  * Add a subselect as constraint
  * 
  * @param Zend_Db_Select $select A select object used as subselect in query.
  * The subquery must return a list of document ids.
  * 
  * @return Opus_DocumentFinder Fluent interface.
  */
 public function setSubSelectNotExists($select)
 {
     $this->select->where(' NOT d.id IN (' . $select->assemble() . ')');
     return $this;
 }
開發者ID:alexukua,項目名稱:opus4,代碼行數:13,代碼來源:DocumentFinder.php

示例10: assemble

 /**
  * Performs a validation on the select query before passing back to the parent class.
  * Ensures that only columns from the primary Kwf_Db_Table are returned in the result.
  *
  * @return string|null This object as a SELECT string (or null if a string cannot be produced)
  */
 public function assemble()
 {
     $fields = $this->getPart(Kwf_Db_Table_Select::COLUMNS);
     $primary = $this->_table->getTableName();
     $schema = $this->_table->getSchemaName();
     if (count($this->_parts[self::UNION]) == 0) {
         // If no fields are specified we assume all fields from primary table
         if (!count($fields)) {
             $this->from($primary, self::SQL_WILDCARD, $schema);
             $fields = $this->getPart(Kwf_Db_Table_Select::COLUMNS);
         }
         $from = $this->getPart(Kwf_Db_Table_Select::FROM);
         if ($this->_integrityCheck !== false) {
             foreach ($fields as $columnEntry) {
                 list($table, $column) = $columnEntry;
                 // Check each column to ensure it only references the primary table
                 if ($column) {
                     if (!isset($from[$table]) || $from[$table]['tableName'] != $primary) {
                         throw new Kwf_Exception('Select query cannot join with another table');
                     }
                 }
             }
         }
     }
     return parent::assemble();
 }
開發者ID:koala-framework,項目名稱:koala-framework,代碼行數:32,代碼來源:Select.php


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