Voornaam | Aleida Wijnanda |
---|---|
Achternaam | Hameete |
Begraafplaats | Herkingen |
Geboortedatum | 14-04-1899 |
Overlijdensdatum | 07-01-1996 |
Geboorteplaats | |
Overlijdensplaats | |
Foto nr. | 158 |
Voornaam | Achternaam | Geb. datum | Ovl. datum | Foto nr. |
---|---|---|---|---|
Jacob | Wageningen van | 26-04-1895 | 06-12-1976 | 158 |
/home/admin/domains/graftombe.nl/public_html/yii/framework/db/CDbCommand.php(358)
346 { 347 if($this->_connection->enableProfiling) 348 Yii::endProfile('system.db.CDbCommand.execute('.$this->getText().$par.')','system.db.CDbCommand.execute'); 349 350 $errorInfo=$e instanceof PDOException ? $e->errorInfo : null; 351 $message=$e->getMessage(); 352 Yii::log(Yii::t('yii','CDbCommand::execute() failed: {error}. The SQL statement executed was: {sql}.', 353 array('{error}'=>$message, '{sql}'=>$this->getText().$par)),CLogger::LEVEL_ERROR,'system.db.CDbCommand'); 354 355 if(YII_DEBUG) 356 $message.='. The SQL statement executed was: '.$this->getText().$par; 357 358 throw new CDbException(Yii::t('yii','CDbCommand failed to execute the SQL statement: {error}', 359 array('{error}'=>$message)),(int)$e->getCode(),$errorInfo); 360 } 361 } 362 363 /** 364 * Executes the SQL statement and returns query result. 365 * This method is for executing an SQL query that returns result set. 366 * @param array $params input parameters (name=>value) for the SQL execution. This is an alternative 367 * to {@link bindParam} and {@link bindValue}. If you have multiple input parameters, passing 368 * them in this way can improve the performance. Note that if you pass parameters in this way, 369 * you cannot bind parameters or values using {@link bindParam} or {@link bindValue}, and vice versa. 370 * Please also note that all values are treated as strings in this case, if you need them to be handled as
#0 |
+
–
/home/admin/domains/graftombe.nl/public_html/protected/modifications/CDbHttpSessionUA.php(183): CDbCommand->execute() 178 $sql="SELECT id FROM {$this->sessionTableName} WHERE id=:id"; 179 if($db->createCommand($sql)->bindValue(':id',$id)->queryScalar()===false) 180 $sql="INSERT INTO {$this->sessionTableName} (id, data, expire, isBot, ip, ua) VALUES (:id, :data, $expire, :isBot, :ip, :ua)"; 181 else 182 $sql="UPDATE {$this->sessionTableName} SET expire=$expire, data=:data, isBot=:isBot, ip = :ip, ua = :ua WHERE id=:id"; 183 $db->createCommand($sql)->bindValue(':id',$id)->bindValue(':data',$data)->bindValue(':isBot', $this->isBot())->bindValue(':ip', $_SERVER['REMOTE_ADDR'])->bindValue(':ua', $_SERVER['HTTP_USER_AGENT'])->execute(); 184 return true; 185 } 186 187 /** 188 * Session destroy handler. |
#1 |
unknown(0): CDbHttpSessionUA->writeSession()
|
#2 |
+
–
/home/admin/domains/graftombe.nl/public_html/yii/framework/web/CHttpSession.php(140): session_write_close() 135 * Ends the current session and store session data. 136 */ 137 public function close() 138 { 139 if(session_id()!=='') 140 @session_write_close(); 141 } 142 143 /** 144 * Frees all session variables and destroys all data registered to a session. 145 */ |
#3 |
unknown(0): CHttpSession->close()
|