/** * 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->aRights !== null) { if ($this->aRights->isModified() || $this->aRights->isNew()) { $affectedRows += $this->aRights->save($con); } $this->setRights($this->aRights); } if ($this->aTemplatenames !== null) { if ($this->aTemplatenames->isModified() || $this->aTemplatenames->isNew()) { $affectedRows += $this->aTemplatenames->save($con); } $this->setTemplatenames($this->aTemplatenames); } if ($this->isNew() || $this->isModified()) { // persist changes if ($this->isNew()) { $this->doInsert($con); $affectedRows += 1; } else { $affectedRows += $this->doUpdate($con); } $this->resetModified(); } $this->alreadyInSave = false; } return $affectedRows; }
/** * 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->auserSysRef !== null) { if ($this->auserSysRef->isModified() || $this->auserSysRef->isNew()) { $affectedRows += $this->auserSysRef->save($con); } $this->setuserSysRef($this->auserSysRef); } if ($this->aFormats !== null) { if ($this->aFormats->isModified() || $this->aFormats->isNew()) { $affectedRows += $this->aFormats->save($con); } $this->setFormats($this->aFormats); } if ($this->aIssues !== null) { if ($this->aIssues->isModified() || $this->aIssues->isNew()) { $affectedRows += $this->aIssues->save($con); } $this->setIssues($this->aIssues); } if ($this->aTemplatenames !== null) { if ($this->aTemplatenames->isModified() || $this->aTemplatenames->isNew()) { $affectedRows += $this->aTemplatenames->save($con); } $this->setTemplatenames($this->aTemplatenames); } if ($this->isNew() || $this->isModified()) { // persist changes if ($this->isNew()) { $this->doInsert($con); $affectedRows += 1; } else { $affectedRows += $this->doUpdate($con); } $this->resetModified(); } if ($this->datasScheduledForDeletion !== null) { if (!$this->datasScheduledForDeletion->isEmpty()) { \DataQuery::create()->filterByPrimaryKeys($this->datasScheduledForDeletion->getPrimaryKeys(false))->delete($con); $this->datasScheduledForDeletion = null; } } if ($this->collDatas !== null) { foreach ($this->collDatas as $referrerFK) { if (!$referrerFK->isDeleted() && ($referrerFK->isNew() || $referrerFK->isModified())) { $affectedRows += $referrerFK->save($con); } } } $this->alreadyInSave = false; } return $affectedRows; }
/** * 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->aTemplatenames !== null) { if ($this->aTemplatenames->isModified() || $this->aTemplatenames->isNew()) { $affectedRows += $this->aTemplatenames->save($con); } $this->setTemplatenames($this->aTemplatenames); } if ($this->isNew() || $this->isModified()) { // persist changes if ($this->isNew()) { $this->doInsert($con); $affectedRows += 1; } else { $affectedRows += $this->doUpdate($con); } $this->resetModified(); } if ($this->fieldpostprocessorsScheduledForDeletion !== null) { if (!$this->fieldpostprocessorsScheduledForDeletion->isEmpty()) { $pks = array(); foreach ($this->fieldpostprocessorsScheduledForDeletion as $entry) { $entryPk = []; $entryPk[1] = $this->getId(); $entryPk[0] = $entry->getId(); $pks[] = $entryPk; } \RFieldpostprocessorForfieldQuery::create()->filterByPrimaryKeys($pks)->delete($con); $this->fieldpostprocessorsScheduledForDeletion = null; } } if ($this->collFieldpostprocessors) { foreach ($this->collFieldpostprocessors as $fieldpostprocessor) { if (!$fieldpostprocessor->isDeleted() && ($fieldpostprocessor->isNew() || $fieldpostprocessor->isModified())) { $fieldpostprocessor->save($con); } } } if ($this->rFieldpostprocessorForfieldsScheduledForDeletion !== null) { if (!$this->rFieldpostprocessorForfieldsScheduledForDeletion->isEmpty()) { \RFieldpostprocessorForfieldQuery::create()->filterByPrimaryKeys($this->rFieldpostprocessorForfieldsScheduledForDeletion->getPrimaryKeys(false))->delete($con); $this->rFieldpostprocessorForfieldsScheduledForDeletion = null; } } if ($this->collRFieldpostprocessorForfields !== null) { foreach ($this->collRFieldpostprocessorForfields as $referrerFK) { if (!$referrerFK->isDeleted() && ($referrerFK->isNew() || $referrerFK->isModified())) { $affectedRows += $referrerFK->save($con); } } } if ($this->datasScheduledForDeletion !== null) { if (!$this->datasScheduledForDeletion->isEmpty()) { \DataQuery::create()->filterByPrimaryKeys($this->datasScheduledForDeletion->getPrimaryKeys(false))->delete($con); $this->datasScheduledForDeletion = null; } } if ($this->collDatas !== null) { foreach ($this->collDatas as $referrerFK) { if (!$referrerFK->isDeleted() && ($referrerFK->isNew() || $referrerFK->isModified())) { $affectedRows += $referrerFK->save($con); } } } $this->alreadyInSave = false; } return $affectedRows; }