Begraafplaats: Goes RK

Voornaam Achternaam Geb. datum Geboortedatum Ovl. datum Overlijdensdatum Foto nr.
Petrus Joh. Aartsen 22-06-1912 25-09-1950 531
Joanna Acda 08-02-1885 21-06-1955 107
M Acker van 30-03-1903 644
P. P. Acker van 02-12-1890 27-03-1975 204
Rosalia Huberta Acker van 22-07-1893 21-06-1968 259
M.A Adriaansens 11-05-1897 410
Antonius Adrianus Aertsen 18-11-1872 13-08-1942 502
Josephus Aertssen 15-04-1910 20-08-1943 504
Maria Aertssen 11-06-1906 14-10-1981 372
Alexander Alt 12-04-1895 06-02-1962 189
Petronella Jacoba Ambags 05-12-1889 04-03-1957 414
Leonardus J Apeldoorn van 09-06-1903 26-09-1980 389
Rudi Ars 12-12-1960 28-08-1974 390
Marie Asselbergs 16-03-1879 24-10-1924 429

* Gegevens van recent overleden personen worden niet weergeven op het openbare gedeelte van graftombe.nl. klik hier om in te loggen.

Extra informatie:

Deze begraafplaats bevat 664 namen, is geplaatst op 03/10/2020 en de laatste update was op 11/10/2020
Laatste maand van begraven in de lijst is augustus 2002

CDbException

CDbException

CDbCommand faalde tijdens het uitvoeren van volgend SQL statement: SQLSTATE[23000]: Integrity constraint violation: 1062 Duplicate entry 'l0uqbvjseoeg0tsrgr3ih4guhp' for key 'PRIMARY'. The SQL statement executed was: INSERT INTO YiiSession (id, data, expire, isBot, ip, ua) VALUES (:id, :data, 1789882245, :isBot, :ip, :ua)

/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

Stack Trace

#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.
2026-09-20 07:06:45 Apache/2 Yii Framework/1.1.26