E:\IIS\website\third_party\yiisoft\yii\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 |
+
–
E:\IIS\website\third_party\yiisoft\yii\framework\db\CDbCommand.php(377): CDbCommand->queryInternal("", 0, array("min" => "4814", "max" => "5082")) 372 * @return CDbDataReader the reader object for fetching the query result 373 * @throws CException execution failed 374 */ 375 public function query($params=array()) 376 { 377 return $this->queryInternal('',0,$params); 378 } 379 380 /** 381 * Executes the SQL statement and returns all rows. 382 * @param boolean $fetchAssociative whether each row should be returned as an associated array with |
#1 |
+
–
E:\IIS\website\application\helpers\admin\exportresults_helper.php(118): CDbCommand->query() 113 for ($i = 0; $i < $maxPages; $i++) { 114 $offset = $i * $maxRows; 115 $responsesQuery = $surveyDao->loadSurveyResults($survey, $oOptions->responseMinRecord, $oOptions->responseMaxRecord, $sFilter, $oOptions->responseCompletionState, $oOptions->selectedColumns, $oOptions->aResponses); 116 $responsesQuery->offset($offset); 117 $responsesQuery->limit($maxRows); 118 $survey->responses = $responsesQuery->query(); 119 $writer->write($survey, $sLanguageCode, $oOptions, true); 120 } 121 $result = $writer->close(); 122 123 // Close resultset if needed |
#2 |
+
–
E:\IIS\website\application\controllers\admin\Export.php(359): ExportSurveyResultsService->exportResponses("444682", "en", "csv", FormattingOptions, ...) 354 } else { 355 $sFilter = ''; 356 } 357 358 viewHelper::disableHtmlLogging(); 359 $resultsService->exportResponses($iSurveyID, $explang, $sExportType, $options, $sFilter); 360 361 Yii::app()->end(); 362 } 363 364 /** |
#3 |
unknown(0): Export->exportresults()
|
#4 |
+
–
E:\IIS\website\third_party\yiisoft\yii\framework\web\actions\CAction.php(115): ReflectionMethod->invokeArgs(Export, array()) 110 elseif($param->isDefaultValueAvailable()) 111 $ps[]=$param->getDefaultValue(); 112 else 113 return false; 114 } 115 $method->invokeArgs($object,$ps); 116 return true; 117 } 118 } |
#5 |
+
–
E:\IIS\website\application\core\SurveyCommonAction.php(83): CAction->runWithParamsInternal(Export,
ReflectionMethod, array("r" =>
"admin/export/sa/exportresults/surveyid/444682", "sa" =>
"exportresults", "surveyid" => "444682", "iSurveyId" => "444682",
...)) 78 $oMethod = new ReflectionMethod($this, $sDefault); 79 } 80 81 // We're all good to go, let's execute it 82 // runWithParamsInternal would automatically get the parameters of the method and populate them as required with the params 83 return parent::runWithParamsInternal($this, $oMethod, $params); 84 } 85 86 /** 87 * Some functions have different parameters, which are just an alias of the 88 * usual parameters we're getting in the url. This function just populates |
#6 |
+
–
E:\IIS\website\third_party\yiisoft\yii\framework\web\CController.php(308): SurveyCommonAction->runWithParams(array("r"
=> "admin/export/sa/exportresults/surveyid/444682", "sa" =>
"exportresults", "surveyid" => "444682", "iSurveyId" => "444682",
...)) 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; |
#7 |
+
–
E:\IIS\website\third_party\yiisoft\yii\framework\web\CController.php(286): CController->runAction(Export) 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(); |
#8 |
+
–
E:\IIS\website\third_party\yiisoft\yii\framework\web\CController.php(265): CController->runActionWithFilters(Export, 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); |
#9 |
+
–
E:\IIS\website\application\controllers\AdminController.php(202): CController->run("export") 197 } 198 199 $this->runModuleController($action); 200 201 202 return parent::run($action); 203 } 204 205 /** 206 * Starting with LS4, 3rd party developer can extends any of the LimeSurve controllers. 207 * |
#10 |
+
–
E:\IIS\website\third_party\yiisoft\yii\framework\web\CWebApplication.php(282): AdminController->run("export") 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))); |
#11 |
+
–
E:\IIS\website\third_party\yiisoft\yii\framework\web\CWebApplication.php(141): CWebApplication->runController("admin/export/sa/exportresults/surveyid/444682") 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. |
#12 |
+
–
E:\IIS\website\third_party\yiisoft\yii\framework\base\CApplication.php(185): CWebApplication->processRequest() 180 public function run() 181 { 182 if($this->hasEventHandler('onBeginRequest')) 183 $this->onBeginRequest(new CEvent($this)); 184 register_shutdown_function(array($this,'end'),0,false); 185 $this->processRequest(); 186 if($this->hasEventHandler('onEndRequest')) 187 $this->onEndRequest(new CEvent($this)); 188 } 189 190 /** |
#13 |
+
–
E:\IIS\website\index.php(192): CApplication->run() 187 require_once APPPATH . 'core/LSYii_Application' . EXT; 188 189 $config = require_once(APPPATH . 'config/internal' . EXT); 190 191 Yii::$enableIncludePath = false; 192 Yii::createApplication('LSYii_Application', $config)->run(); 193 194 /* End of file index.php */ 195 /* Location: ./index.php */ |