80 if (\
count ( $this->instances ) > 0) {
81 $statement = $this->db->getUpdateStatement ( $this->
createSQL () );
84 $result = $statement->execute ( $this->parameters );
85 if ($result !==
false) {
86 $this->instances = [ ];
87 $this->parameters = [ ];
90 }
catch ( \Exception $e ) {
91 Logger::warn (
"DAOBulkUpdates", $e->getMessage (), \get_class ( $this ) );
92 if ($e->errorInfo [0] == 40001 && $this->db->getDbType () ==
'mysql' && $e->errorInfo [1] == 1213) {
95 if (Startup::$config [
'debug']) {