/** * 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 PropelPDO $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(PropelPDO $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 coresponding set // method. This object relates to these object(s) by a // foreign key reference. if ($this->aWing !== null) { if ($this->aWing->isModified() || $this->aWing->isNew()) { $affectedRows += $this->aWing->save($con); } $this->setWing($this->aWing); } if ($this->aMissionType !== null) { if ($this->aMissionType->isModified() || $this->aMissionType->isNew()) { $affectedRows += $this->aMissionType->save($con); } $this->setMissionType($this->aMissionType); } if ($this->isNew()) { $this->modifiedColumns[] = MissionTypeWingStatsPeer::ID; } // If this object has been modified, then save it to the database. if ($this->isModified()) { if ($this->isNew()) { $pk = MissionTypeWingStatsPeer::doInsert($this, $con); $affectedRows += 1; // we are assuming that there is only 1 row per doInsert() which // should always be true here (even though technically // BasePeer::doInsert() can insert multiple rows). $this->setId($pk); //[IMV] update autoincrement primary key $this->setNew(false); } else { $affectedRows += MissionTypeWingStatsPeer::doUpdate($this, $con); } $this->resetModified(); // [HL] After being saved an object is no longer 'modified' } $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 PropelPDO $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(PropelPDO $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 coresponding set // method. This object relates to these object(s) by a // foreign key reference. if ($this->aMissionRequest !== null) { if ($this->aMissionRequest->isModified() || $this->aMissionRequest->isNew()) { $affectedRows += $this->aMissionRequest->save($con); } $this->setMissionRequest($this->aMissionRequest); } if ($this->aItinerary !== null) { if ($this->aItinerary->isModified() || $this->aItinerary->isNew()) { $affectedRows += $this->aItinerary->save($con); } $this->setItinerary($this->aItinerary); } if ($this->aMissionType !== null) { if ($this->aMissionType->isModified() || $this->aMissionType->isNew()) { $affectedRows += $this->aMissionType->save($con); } $this->setMissionType($this->aMissionType); } if ($this->aPassenger !== null) { if ($this->aPassenger->isModified() || $this->aPassenger->isNew()) { $affectedRows += $this->aPassenger->save($con); } $this->setPassenger($this->aPassenger); } if ($this->aRequesterRelatedByRequesterId !== null) { if ($this->aRequesterRelatedByRequesterId->isModified() || $this->aRequesterRelatedByRequesterId->isNew()) { $affectedRows += $this->aRequesterRelatedByRequesterId->save($con); } $this->setRequesterRelatedByRequesterId($this->aRequesterRelatedByRequesterId); } if ($this->aAgencyRelatedByAgencyId !== null) { if ($this->aAgencyRelatedByAgencyId->isModified() || $this->aAgencyRelatedByAgencyId->isNew()) { $affectedRows += $this->aAgencyRelatedByAgencyId->save($con); } $this->setAgencyRelatedByAgencyId($this->aAgencyRelatedByAgencyId); } if ($this->aRequesterRelatedByOtherRequesterId !== null) { if ($this->aRequesterRelatedByOtherRequesterId->isModified() || $this->aRequesterRelatedByOtherRequesterId->isNew()) { $affectedRows += $this->aRequesterRelatedByOtherRequesterId->save($con); } $this->setRequesterRelatedByOtherRequesterId($this->aRequesterRelatedByOtherRequesterId); } if ($this->aAgencyRelatedByOtherAgencyId !== null) { if ($this->aAgencyRelatedByOtherAgencyId->isModified() || $this->aAgencyRelatedByOtherAgencyId->isNew()) { $affectedRows += $this->aAgencyRelatedByOtherAgencyId->save($con); } $this->setAgencyRelatedByOtherAgencyId($this->aAgencyRelatedByOtherAgencyId); } if ($this->aCamp !== null) { if ($this->aCamp->isModified() || $this->aCamp->isNew()) { $affectedRows += $this->aCamp->save($con); } $this->setCamp($this->aCamp); } if ($this->aCoordinator !== null) { if ($this->aCoordinator->isModified() || $this->aCoordinator->isNew()) { $affectedRows += $this->aCoordinator->save($con); } $this->setCoordinator($this->aCoordinator); } if ($this->isNew()) { $this->modifiedColumns[] = MissionPeer::ID; } // If this object has been modified, then save it to the database. if ($this->isModified()) { if ($this->isNew()) { $pk = MissionPeer::doInsert($this, $con); $affectedRows += 1; // we are assuming that there is only 1 row per doInsert() which // should always be true here (even though technically // BasePeer::doInsert() can insert multiple rows). $this->setId($pk); //[IMV] update autoincrement primary key $this->setNew(false); } else { $affectedRows += MissionPeer::doUpdate($this, $con); } $this->resetModified(); // [HL] After being saved an object is no longer 'modified' } if ($this->collMissionCompanions !== null) { foreach ($this->collMissionCompanions as $referrerFK) { if (!$referrerFK->isDeleted()) { $affectedRows += $referrerFK->save($con); } } } if ($this->collMissionLegs !== null) { foreach ($this->collMissionLegs as $referrerFK) { if (!$referrerFK->isDeleted()) { $affectedRows += $referrerFK->save($con); } } } if ($this->collMissionPhotos !== null) { foreach ($this->collMissionPhotos as $referrerFK) { if (!$referrerFK->isDeleted()) { $affectedRows += $referrerFK->save($con); } } } $this->alreadyInSave = false; } return $affectedRows; }