/** * Performs the work of inserting or updating the row in the database. * * If the object is new, it inserts it; otherwise an update is performed. * All related objects are also updated in this method. * * @param ConnectionInterface $con * @return int The number of rows affected by this insert/update and any referring fk objects' save() operations. * @throws PropelException * @see save() */ protected function doSave(ConnectionInterface $con) { $affectedRows = 0; // initialize var to track total num of affected rows if (!$this->alreadyInSave) { $this->alreadyInSave = true; // We call the save method on the following object(s) if they // were passed to this object by their corresponding set // method. This object relates to these object(s) by a // foreign key reference. if ($this->aCompetition !== null) { if ($this->aCompetition->isModified() || $this->aCompetition->isNew()) { $affectedRows += $this->aCompetition->save($con); } $this->setCompetition($this->aCompetition); } if ($this->aEvent !== null) { if ($this->aEvent->isModified() || $this->aEvent->isNew()) { $affectedRows += $this->aEvent->save($con); } $this->setEvent($this->aEvent); } if ($this->aPerformanceTotalStatistic !== null) { if ($this->aPerformanceTotalStatistic->isModified() || $this->aPerformanceTotalStatistic->isNew()) { $affectedRows += $this->aPerformanceTotalStatistic->save($con); } $this->setPerformanceTotalStatistic($this->aPerformanceTotalStatistic); } if ($this->aPerformanceExecutionStatistic !== null) { if ($this->aPerformanceExecutionStatistic->isModified() || $this->aPerformanceExecutionStatistic->isNew()) { $affectedRows += $this->aPerformanceExecutionStatistic->save($con); } $this->setPerformanceExecutionStatistic($this->aPerformanceExecutionStatistic); } if ($this->aPerformanceChoreographyStatistic !== null) { if ($this->aPerformanceChoreographyStatistic->isModified() || $this->aPerformanceChoreographyStatistic->isNew()) { $affectedRows += $this->aPerformanceChoreographyStatistic->save($con); } $this->setPerformanceChoreographyStatistic($this->aPerformanceChoreographyStatistic); } if ($this->aPerformanceMusicAndTimingStatistic !== null) { if ($this->aPerformanceMusicAndTimingStatistic->isModified() || $this->aPerformanceMusicAndTimingStatistic->isNew()) { $affectedRows += $this->aPerformanceMusicAndTimingStatistic->save($con); } $this->setPerformanceMusicAndTimingStatistic($this->aPerformanceMusicAndTimingStatistic); } if ($this->isNew() || $this->isModified()) { // persist changes if ($this->isNew()) { $this->doInsert($con); $affectedRows += 1; } else { $affectedRows += $this->doUpdate($con); } $this->resetModified(); } if ($this->routinesScheduledForDeletion !== null) { if (!$this->routinesScheduledForDeletion->isEmpty()) { \iuf\junia\model\RoutineQuery::create()->filterByPrimaryKeys($this->routinesScheduledForDeletion->getPrimaryKeys(false))->delete($con); $this->routinesScheduledForDeletion = null; } } if ($this->collRoutines !== null) { foreach ($this->collRoutines as $referrerFK) { if (!$referrerFK->isDeleted() && ($referrerFK->isNew() || $referrerFK->isModified())) { $affectedRows += $referrerFK->save($con); } } } if ($this->judgesScheduledForDeletion !== null) { if (!$this->judgesScheduledForDeletion->isEmpty()) { \iuf\junia\model\JudgeQuery::create()->filterByPrimaryKeys($this->judgesScheduledForDeletion->getPrimaryKeys(false))->delete($con); $this->judgesScheduledForDeletion = null; } } if ($this->collJudges !== null) { foreach ($this->collJudges as $referrerFK) { if (!$referrerFK->isDeleted() && ($referrerFK->isNew() || $referrerFK->isModified())) { $affectedRows += $referrerFK->save($con); } } } $this->alreadyInSave = false; } return $affectedRows; }