当前位置: 首页>>代码示例>>PHP>>正文


PHP Zend_Db_Table_Select::assemble方法代码示例

本文整理汇总了PHP中Zend_Db_Table_Select::assemble方法的典型用法代码示例。如果您正苦于以下问题:PHP Zend_Db_Table_Select::assemble方法的具体用法?PHP Zend_Db_Table_Select::assemble怎么用?PHP Zend_Db_Table_Select::assemble使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在Zend_Db_Table_Select的用法示例。


在下文中一共展示了Zend_Db_Table_Select::assemble方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: assemble

 public function assemble()
 {
     $assembled = parent::assemble();
     /** @var $logger Logger_Application_Logger */
     $logger = Zend_Registry::get('logger');
     $logger->log(__CLASS__ . ":: " . $assembled, "system", Zend_log::DEBUG);
     return $assembled;
 }
开发者ID:qshurick,项目名称:pro_core,代码行数:8,代码来源:Select.php

示例2: 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[Zend_Db_Table_Select::UNION]) == 0) {
         // If no fields are specified we assume all fields from primary table
         if (!count($fields)) {
             $prefix = $this->_info[Axis_Db_Table_Abstract::PREFIX];
             $shortPrimary = substr($primary, strlen($prefix));
             $this->from($shortPrimary, Zend_Db_Table_Select::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 'Zend/Db/Table/Select/Exception.php';
                         throw new Zend_Db_Table_Select_Exception('Select query cannot join with another table');
                     }
                 }
             }
         }
     }
     return parent::assemble();
 }
开发者ID:baisoo,项目名称:axiscommerce,代码行数:35,代码来源:Select.php

示例3: assemble

 /**
  * Standard Zend_Db_Select assemble
  * 
  * @return string
  */
 public function assemble()
 {
     return $this->select->assemble();
 }
开发者ID:laiello,项目名称:zend-db-select-dynamic-finder,代码行数:9,代码来源:DynamicFinder.php


注:本文中的Zend_Db_Table_Select::assemble方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。