/usr/src/app/publik/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 |
+
–
/usr/src/app/publik/framework/db/CDbCommand.php(415): CDbCommand->queryInternal("fetch", array(2), array()) 410 * @return mixed the first row (in terms of an array) of the query result, false if no result. 411 * @throws CException execution failed 412 */ 413 public function queryRow($fetchAssociative=true,$params=array()) 414 { 415 return $this->queryInternal('fetch',$fetchAssociative ? $this->_fetchMode : PDO::FETCH_NUM, $params); 416 } 417 418 /** 419 * Executes the SQL statement and returns the value of the first column in the first row of data. 420 * This is a convenient method of {@link query} when only a single scalar |
#1 |
+
–
/usr/src/app/publik/framework/db/ar/CActiveRecord.php(1351): CDbCommand->queryRow() 1346 if(empty($criteria->with)) 1347 { 1348 if(!$all) 1349 $criteria->limit=1; 1350 $command=$this->getCommandBuilder()->createFindCommand($this->getTableSchema(),$criteria,$this->getTableAlias()); 1351 return $all ? $this->populateRecords($command->queryAll(), true, $criteria->index) : $this->populateRecord($command->queryRow()); 1352 } 1353 else 1354 { 1355 $finder=$this->getActiveFinder($criteria->with); 1356 return $finder->query($criteria,$all); |
#2 |
+
–
/usr/src/app/publik/framework/db/ar/CActiveRecord.php(1456): CActiveRecord->query(CDbCriteria) 1451 */ 1452 public function find($condition='',$params=array()) 1453 { 1454 Yii::trace(get_class($this).'.find()','system.db.ar.CActiveRecord'); 1455 $criteria=$this->getCommandBuilder()->createCriteria($condition,$params); 1456 return $this->query($criteria); 1457 } 1458 1459 /** 1460 * Finds all active records satisfying the specified condition. 1461 * See {@link find()} for detailed explanation about $condition and $params. |
#3 |
+
–
/usr/src/app/publik/protected/controllers/WebController.php(92): CActiveRecord->find("tblwebkontent_status="T" AND tblsubkategori_id=index.html") 87 } 88 public function actionDatapotensi_kontent() 89 { 90 // echo "string"; die 91 $id = Yii::app()->request->getParam('id'); 92 $data['kontent_datapotensi'] = TblwebkontentPotensiinvestasi::model()->find('tblwebkontent_status="T" AND tblsubkategori_id='.$id); 93 // print_r($data['kontent_datapotensi']); die(); 94 $this->render('kontent_datapotensi', array('data'=>$data)); 95 } 96 public function actionHubungikami() 97 { |
#4 |
+
–
/usr/src/app/publik/framework/web/actions/CInlineAction.php(49): WebController->actionDatapotensi_kontent() 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 |
+
–
/usr/src/app/publik/framework/web/CController.php(308): CInlineAction->runWithParams(array("id" => "index.html")) 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 |
+
–
/usr/src/app/publik/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 |
+
–
/usr/src/app/publik/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 |
+
–
/usr/src/app/publik/framework/web/CWebApplication.php(282): CController->run("datapotensi_kontent") 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 |
+
–
/usr/src/app/publik/framework/web/CWebApplication.php(141): CWebApplication->runController("web/datapotensi_kontent/id/index.html") 136 foreach(array_splice($this->catchAllRequest,1) as $name=>$value) 137 XXXXX[$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 |
+
–
/usr/src/app/publik/framework/base/CApplication.php(180): CWebApplication->processRequest() 175 public function run() 176 { 177 if($this->hasEventHandler('onBeginRequest')) 178 $this->onBeginRequest(new CEvent($this)); 179 register_shutdown_function(array($this,'end'),0,false); 180 $this->processRequest(); 181 if($this->hasEventHandler('onEndRequest')) 182 $this->onEndRequest(new CEvent($this)); 183 } 184 185 /** |
#11 |
+
–
/usr/src/app/publik/index.php(16): CApplication->run() 11 defined('YII_DEBUG') or define('YII_DEBUG',true); 12 // specify how many levels of call stack should be shown in each log message 13 defined('YII_TRACE_LEVEL') or define('YII_TRACE_LEVEL',3); 14 define('URAIAN_EDIT', false); 15 require_once($yii); 16 Yii::createWebApplication($config)->run(); 17 18 // header("Location: http://pmperizinan.jogjakota.go.id"); |