/www/wwwroot/zmjzj.com/framework/db/CDbCommand.php(543)
531 { 532 if($this->_connection->enableProfiling) 533 Yii::endProfile('system.db.CDbCommand.query('.$this->getText().$par.')','system.db.CDbCommand.query'); 534 535 $errorInfo=$e instanceof PDOException ? $e->errorInfo : null; 536 $message=$e->getMessage(); 537 Yii::log(Yii::t('yii','CDbCommand::{method}() failed: {error}. The SQL statement executed was: {sql}.', 538 array('{method}'=>$method, '{error}'=>$message, '{sql}'=>$this->getText().$par)),CLogger::LEVEL_ERROR,'system.db.CDbCommand'); 539 540 if(YII_DEBUG) 541 $message.='. The SQL statement executed was: '.$this->getText().$par; 542 543 throw new CDbException(Yii::t('yii','CDbCommand failed to execute the SQL statement: {error}', 544 array('{error}'=>$message)),(int)$e->getCode(),$errorInfo); 545 } 546 } 547 548 /** 549 * Builds a SQL SELECT statement from the given query specification. 550 * @param array $query the query specification in name-value pairs. The following 551 * query options are supported: {@link select}, {@link distinct}, {@link from}, 552 * {@link where}, {@link join}, {@link group}, {@link having}, {@link order}, 553 * {@link limit}, {@link offset} and {@link union}. 554 * @throws CDbException if "from" key is not present in given query parameter 555 * @return string the SQL statement
#0 |
+
–
/www/wwwroot/zmjzj.com/framework/db/CDbCommand.php(396): CDbCommand->queryInternal("fetchAll", array(2), array()) 391 * An empty array is returned if the query results in nothing. 392 * @throws CException execution failed 393 */ 394 public function queryAll($fetchAssociative=true,$params=array()) 395 { 396 return $this->queryInternal('fetchAll',$fetchAssociative ? $this->_fetchMode : PDO::FETCH_NUM, $params); 397 } 398 399 /** 400 * Executes the SQL statement and returns the first row of the result. 401 * This is a convenient method of {@link query} when only the first row of data is needed. |
#1 |
+
–
/www/wwwroot/zmjzj.com/framework/db/ar/CActiveRecord.php(1354): CDbCommand->queryAll() 1349 if(empty($criteria->with)) 1350 { 1351 if(!$all) 1352 $criteria->limit=1; 1353 $command=$this->getCommandBuilder()->createFindCommand($this->getTableSchema(),$criteria); 1354 return $all ? $this->populateRecords($command->queryAll(), true, $criteria->index) : $this->populateRecord($command->queryRow()); 1355 } 1356 else 1357 { 1358 $finder=$this->getActiveFinder($criteria->with); 1359 return $finder->query($criteria,$all); |
#2 |
+
–
/www/wwwroot/zmjzj.com/framework/db/ar/CActiveRecord.php(1473): CActiveRecord->query(CDbCriteria, true) 1468 */ 1469 public function findAll($condition='',$params=array()) 1470 { 1471 Yii::trace(get_class($this).'.findAll()','system.db.ar.CActiveRecord'); 1472 $criteria=$this->getCommandBuilder()->createCriteria($condition,$params); 1473 return $this->query($criteria,true); 1474 } 1475 1476 /** 1477 * Finds a single active record with the specified primary key. 1478 * See {@link find()} for detailed explanation about $condition and $params. |
#3 |
+
–
/www/wwwroot/zmjzj.com/protected/controllers/PageController.php(85): CActiveRecord->findAll("module=6 and parentid=") 80 $criteria = new CDbCriteria(array( 81 'order' => 'id DESC', 82 )); 83 $categoryList = array(); 84 $categoryList[] = $cid; 85 $arrchild = Category::model()->findAll('module=6 and parentid=' . $cid); 86 foreach ($arrchild as $v) { 87 $categoryList[] = $v->id; 88 } 89 $cate = Category::model()->findByPk($cid); 90 $criteria->addInCondition('cid', $categoryList); |
#4 |
+
–
/www/wwwroot/zmjzj.com/framework/web/actions/CInlineAction.php(49): PageController->actionCpyc() 44 $controller=$this->getController(); 45 $method=new ReflectionMethod($controller, $methodName); 46 if($method->getNumberOfParameters()>0) 47 return $this->runWithParamsInternal($controller, $method, $params); 48 else 49 return $controller->$methodName(); 50 } 51 52 } |
#5 |
+
–
/www/wwwroot/zmjzj.com/framework/web/CController.php(308): CInlineAction->runWithParams(array("cid" => "")) 303 { 304 $priorAction=$this->_action; 305 $this->_action=$action; 306 if($this->beforeAction($action)) 307 { 308 if($action->runWithParams($this->getActionParams())===false) 309 $this->invalidActionParams($action); 310 else 311 $this->afterAction($action); 312 } 313 $this->_action=$priorAction; |
#6 |
+
–
/www/wwwroot/zmjzj.com/framework/web/CController.php(286): CController->runAction(CInlineAction) 281 * @see runAction 282 */ 283 public function runActionWithFilters($action,$filters) 284 { 285 if(empty($filters)) 286 $this->runAction($action); 287 else 288 { 289 $priorAction=$this->_action; 290 $this->_action=$action; 291 CFilterChain::create($this,$action,$filters)->run(); |
#7 |
+
–
/www/wwwroot/zmjzj.com/framework/web/CController.php(265): CController->runActionWithFilters(CInlineAction, array()) 260 { 261 if(($parent=$this->getModule())===null) 262 $parent=Yii::app(); 263 if($parent->beforeControllerAction($this,$action)) 264 { 265 $this->runActionWithFilters($action,$this->filters()); 266 $parent->afterControllerAction($this,$action); 267 } 268 } 269 else 270 $this->missingAction($actionID); |
#8 |
+
–
/www/wwwroot/zmjzj.com/framework/web/CWebApplication.php(282): CController->run("cpyc") 277 { 278 list($controller,$actionID)=$ca; 279 $oldController=$this->_controller; 280 $this->_controller=$controller; 281 $controller->init(); 282 $controller->run($actionID); 283 $this->_controller=$oldController; 284 } 285 else 286 throw new CHttpException(404,Yii::t('yii','Unable to resolve the request "{route}".', 287 array('{route}'=>$route===''?$this->defaultController:$route))); |
#9 |
+
–
/www/wwwroot/zmjzj.com/framework/web/CWebApplication.php(141): CWebApplication->runController("page/cpyc/cid") 136 foreach(array_splice($this->catchAllRequest,1) as $name=>$value) 137 $_GET[$name]=$value; 138 } 139 else 140 $route=$this->getUrlManager()->parseUrl($this->getRequest()); 141 $this->runController($route); 142 } 143 144 /** 145 * Registers the core application components. 146 * This method overrides the parent implementation by registering additional core components. |
#10 |
+
–
/www/wwwroot/zmjzj.com/framework/base/CApplication.php(184): CWebApplication->processRequest() 179 public function run() 180 { 181 if($this->hasEventHandler('onBeginRequest')) 182 $this->onBeginRequest(new CEvent($this)); 183 register_shutdown_function(array($this,'end'),0,false); 184 $this->processRequest(); 185 if($this->hasEventHandler('onEndRequest')) 186 $this->onEndRequest(new CEvent($this)); 187 } 188 189 /** |
#11 |
+
–
/www/wwwroot/zmjzj.com/common.php(13): CApplication->run() 08 // specify how many levels of call stack should be shown in each log message 09 defined('YII_TRACE_LEVEL') or define('YII_TRACE_LEVEL', 5); 10 require_once($yii); 11 $app = Yii::createWebApplication($config); 12 require_once($globals); 13 $app->run(); |
#12 |
+
–
/www/wwwroot/zmjzj.com/index.php(14): require_once("/www/wwwroot/zmjzj.com/common.php") 09 }else{ 10 $config=dirname(__FILE__).'/protected/config/main.php'; 11 } 12 13 $globals = dirname(__FILE__) . '/protected/globals.php'; 14 require_once('./common.php'); |