Exemplo n.º 1
0
 /**
  * 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->aMission !== null) {
             if ($this->aMission->isModified() || $this->aMission->isNew()) {
                 $affectedRows += $this->aMission->save($con);
             }
             $this->setMission($this->aMission);
         }
         if ($this->aCompanion !== null) {
             if ($this->aCompanion->isModified() || $this->aCompanion->isNew()) {
                 $affectedRows += $this->aCompanion->save($con);
             }
             $this->setCompanion($this->aCompanion);
         }
         // If this object has been modified, then save it to the database.
         if ($this->isModified()) {
             if ($this->isNew()) {
                 $pk = MissionCompanionPeer::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->setNew(false);
             } else {
                 $affectedRows += MissionCompanionPeer::doUpdate($this, $con);
             }
             $this->resetModified();
             // [HL] After being saved an object is no longer 'modified'
         }
         $this->alreadyInSave = false;
     }
     return $affectedRows;
 }
Exemplo n.º 2
0
 /**
  * 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->aMission !== null) {
             if ($this->aMission->isModified() || $this->aMission->isNew()) {
                 $affectedRows += $this->aMission->save($con);
             }
             $this->setMission($this->aMission);
         }
         if ($this->aAirportRelatedByFromAirportId !== null) {
             if ($this->aAirportRelatedByFromAirportId->isModified() || $this->aAirportRelatedByFromAirportId->isNew()) {
                 $affectedRows += $this->aAirportRelatedByFromAirportId->save($con);
             }
             $this->setAirportRelatedByFromAirportId($this->aAirportRelatedByFromAirportId);
         }
         if ($this->aAirportRelatedByToAirportId !== null) {
             if ($this->aAirportRelatedByToAirportId->isModified() || $this->aAirportRelatedByToAirportId->isNew()) {
                 $affectedRows += $this->aAirportRelatedByToAirportId->save($con);
             }
             $this->setAirportRelatedByToAirportId($this->aAirportRelatedByToAirportId);
         }
         if ($this->aCoordinator !== null) {
             if ($this->aCoordinator->isModified() || $this->aCoordinator->isNew()) {
                 $affectedRows += $this->aCoordinator->save($con);
             }
             $this->setCoordinator($this->aCoordinator);
         }
         if ($this->aPilotRelatedByPilotId !== null) {
             if ($this->aPilotRelatedByPilotId->isModified() || $this->aPilotRelatedByPilotId->isNew()) {
                 $affectedRows += $this->aPilotRelatedByPilotId->save($con);
             }
             $this->setPilotRelatedByPilotId($this->aPilotRelatedByPilotId);
         }
         if ($this->aMemberRelatedByCopilotId !== null) {
             if ($this->aMemberRelatedByCopilotId->isModified() || $this->aMemberRelatedByCopilotId->isNew()) {
                 $affectedRows += $this->aMemberRelatedByCopilotId->save($con);
             }
             $this->setMemberRelatedByCopilotId($this->aMemberRelatedByCopilotId);
         }
         if ($this->aPilotRelatedByBackupPilotId !== null) {
             if ($this->aPilotRelatedByBackupPilotId->isModified() || $this->aPilotRelatedByBackupPilotId->isNew()) {
                 $affectedRows += $this->aPilotRelatedByBackupPilotId->save($con);
             }
             $this->setPilotRelatedByBackupPilotId($this->aPilotRelatedByBackupPilotId);
         }
         if ($this->aMemberRelatedByBackupCopilotId !== null) {
             if ($this->aMemberRelatedByBackupCopilotId->isModified() || $this->aMemberRelatedByBackupCopilotId->isNew()) {
                 $affectedRows += $this->aMemberRelatedByBackupCopilotId->save($con);
             }
             $this->setMemberRelatedByBackupCopilotId($this->aMemberRelatedByBackupCopilotId);
         }
         if ($this->aMissionReport !== null) {
             if ($this->aMissionReport->isModified() || $this->aMissionReport->isNew()) {
                 $affectedRows += $this->aMissionReport->save($con);
             }
             $this->setMissionReport($this->aMissionReport);
         }
         if ($this->aPilotAircraft !== null) {
             if ($this->aPilotAircraft->isModified() || $this->aPilotAircraft->isNew()) {
                 $affectedRows += $this->aPilotAircraft->save($con);
             }
             $this->setPilotAircraft($this->aPilotAircraft);
         }
         if ($this->aFbo !== null) {
             if ($this->aFbo->isModified() || $this->aFbo->isNew()) {
                 $affectedRows += $this->aFbo->save($con);
             }
             $this->setFbo($this->aFbo);
         }
         if ($this->isNew()) {
             $this->modifiedColumns[] = MissionLegPeer::ID;
         }
         // If this object has been modified, then save it to the database.
         if ($this->isModified()) {
             if ($this->isNew()) {
                 $pk = MissionLegPeer::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 += MissionLegPeer::doUpdate($this, $con);
             }
             $this->resetModified();
             // [HL] After being saved an object is no longer 'modified'
         }
         if ($this->singleAfaLeg !== null) {
             if (!$this->singleAfaLeg->isDeleted()) {
                 $affectedRows += $this->singleAfaLeg->save($con);
             }
         }
         if ($this->collMissionPhotos !== null) {
             foreach ($this->collMissionPhotos as $referrerFK) {
                 if (!$referrerFK->isDeleted()) {
                     $affectedRows += $referrerFK->save($con);
                 }
             }
         }
         if ($this->collPilotRequests !== null) {
             foreach ($this->collPilotRequests as $referrerFK) {
                 if (!$referrerFK->isDeleted()) {
                     $affectedRows += $referrerFK->save($con);
                 }
             }
         }
         $this->alreadyInSave = false;
     }
     return $affectedRows;
 }