示例#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 corresponding set
         // method.  This object relates to these object(s) by a
         // foreign key reference.
         if ($this->aState !== null) {
             if ($this->aState->isModified() || $this->aState->isNew()) {
                 $affectedRows += $this->aState->save($con);
             }
             $this->setState($this->aState);
         }
         if ($this->aCountry !== null) {
             if ($this->aCountry->isModified() || $this->aCountry->isNew()) {
                 $affectedRows += $this->aCountry->save($con);
             }
             $this->setCountry($this->aCountry);
         }
         if ($this->aPrincipal !== null) {
             if ($this->aPrincipal->isModified() || $this->aPrincipal->isNew()) {
                 $affectedRows += $this->aPrincipal->save($con);
             }
             $this->setPrincipal($this->aPrincipal);
         }
         if ($this->aUser !== null) {
             if ($this->aUser->isModified() || $this->aUser->isNew()) {
                 $affectedRows += $this->aUser->save($con);
             }
             $this->setUser($this->aUser);
         }
         if ($this->isNew() || $this->isModified()) {
             // persist changes
             if ($this->isNew()) {
                 $this->doInsert($con);
             } else {
                 $this->doUpdate($con);
             }
             $affectedRows += 1;
             $this->resetModified();
         }
         $this->alreadyInSave = false;
     }
     return $affectedRows;
 }
示例#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 corresponding set
         // method.  This object relates to these object(s) by a
         // foreign key reference.
         if ($this->aCountry !== null) {
             if ($this->aCountry->isModified() || $this->aCountry->isNew()) {
                 $affectedRows += $this->aCountry->save($con);
             }
             $this->setCountry($this->aCountry);
         }
         if ($this->isNew() || $this->isModified()) {
             // persist changes
             if ($this->isNew()) {
                 $this->doInsert($con);
             } else {
                 $this->doUpdate($con);
             }
             $affectedRows += 1;
             $this->resetModified();
         }
         if ($this->branchCoveragesScheduledForDeletion !== null) {
             if (!$this->branchCoveragesScheduledForDeletion->isEmpty()) {
                 BranchCoverageQuery::create()->filterByPrimaryKeys($this->branchCoveragesScheduledForDeletion->getPrimaryKeys(false))->delete($con);
                 $this->branchCoveragesScheduledForDeletion = null;
             }
         }
         if ($this->collBranchCoverages !== null) {
             foreach ($this->collBranchCoverages as $referrerFK) {
                 if (!$referrerFK->isDeleted() && ($referrerFK->isNew() || $referrerFK->isModified())) {
                     $affectedRows += $referrerFK->save($con);
                 }
             }
         }
         if ($this->userProfilesScheduledForDeletion !== null) {
             if (!$this->userProfilesScheduledForDeletion->isEmpty()) {
                 foreach ($this->userProfilesScheduledForDeletion as $userProfile) {
                     // need to save related object because we set the relation to null
                     $userProfile->save($con);
                 }
                 $this->userProfilesScheduledForDeletion = null;
             }
         }
         if ($this->collUserProfiles !== null) {
             foreach ($this->collUserProfiles as $referrerFK) {
                 if (!$referrerFK->isDeleted() && ($referrerFK->isNew() || $referrerFK->isModified())) {
                     $affectedRows += $referrerFK->save($con);
                 }
             }
         }
         if ($this->citiesScheduledForDeletion !== null) {
             if (!$this->citiesScheduledForDeletion->isEmpty()) {
                 foreach ($this->citiesScheduledForDeletion as $city) {
                     // need to save related object because we set the relation to null
                     $city->save($con);
                 }
                 $this->citiesScheduledForDeletion = null;
             }
         }
         if ($this->collCities !== null) {
             foreach ($this->collCities as $referrerFK) {
                 if (!$referrerFK->isDeleted() && ($referrerFK->isNew() || $referrerFK->isModified())) {
                     $affectedRows += $referrerFK->save($con);
                 }
             }
         }
         if ($this->areasScheduledForDeletion !== null) {
             if (!$this->areasScheduledForDeletion->isEmpty()) {
                 foreach ($this->areasScheduledForDeletion as $area) {
                     // need to save related object because we set the relation to null
                     $area->save($con);
                 }
                 $this->areasScheduledForDeletion = null;
             }
         }
         if ($this->collAreas !== null) {
             foreach ($this->collAreas as $referrerFK) {
                 if (!$referrerFK->isDeleted() && ($referrerFK->isNew() || $referrerFK->isModified())) {
                     $affectedRows += $referrerFK->save($con);
                 }
             }
         }
         if ($this->principalsScheduledForDeletion !== null) {
             if (!$this->principalsScheduledForDeletion->isEmpty()) {
                 foreach ($this->principalsScheduledForDeletion as $principal) {
                     // need to save related object because we set the relation to null
                     $principal->save($con);
                 }
                 $this->principalsScheduledForDeletion = null;
             }
         }
         if ($this->collPrincipals !== null) {
             foreach ($this->collPrincipals as $referrerFK) {
                 if (!$referrerFK->isDeleted() && ($referrerFK->isNew() || $referrerFK->isModified())) {
                     $affectedRows += $referrerFK->save($con);
                 }
             }
         }
         if ($this->storesScheduledForDeletion !== null) {
             if (!$this->storesScheduledForDeletion->isEmpty()) {
                 foreach ($this->storesScheduledForDeletion as $store) {
                     // need to save related object because we set the relation to null
                     $store->save($con);
                 }
                 $this->storesScheduledForDeletion = null;
             }
         }
         if ($this->collStores !== null) {
             foreach ($this->collStores as $referrerFK) {
                 if (!$referrerFK->isDeleted() && ($referrerFK->isNew() || $referrerFK->isModified())) {
                     $affectedRows += $referrerFK->save($con);
                 }
             }
         }
         $this->alreadyInSave = false;
     }
     return $affectedRows;
 }
示例#3
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 corresponding set
         // method.  This object relates to these object(s) by a
         // foreign key reference.
         if ($this->aCountry !== null) {
             if ($this->aCountry->isModified() || $this->aCountry->isNew()) {
                 $affectedRows += $this->aCountry->save($con);
             }
             $this->setCountry($this->aCountry);
         }
         if ($this->aState !== null) {
             if ($this->aState->isModified() || $this->aState->isNew()) {
                 $affectedRows += $this->aState->save($con);
             }
             $this->setState($this->aState);
         }
         if ($this->aRegion !== null) {
             if ($this->aRegion->isModified() || $this->aRegion->isNew()) {
                 $affectedRows += $this->aRegion->save($con);
             }
             $this->setRegion($this->aRegion);
         }
         if ($this->aCity !== null) {
             if ($this->aCity->isModified() || $this->aCity->isNew()) {
                 $affectedRows += $this->aCity->save($con);
             }
             $this->setCity($this->aCity);
         }
         if ($this->aArea !== null) {
             if ($this->aArea->isModified() || $this->aArea->isNew()) {
                 $affectedRows += $this->aArea->save($con);
             }
             $this->setArea($this->aArea);
         }
         if ($this->isNew() || $this->isModified()) {
             // persist changes
             if ($this->isNew()) {
                 $this->doInsert($con);
             } else {
                 $this->doUpdate($con);
             }
             $affectedRows += 1;
             $this->resetModified();
         }
         if ($this->visitationsScheduledForDeletion !== null) {
             if (!$this->visitationsScheduledForDeletion->isEmpty()) {
                 foreach ($this->visitationsScheduledForDeletion as $visitation) {
                     // need to save related object because we set the relation to null
                     $visitation->save($con);
                 }
                 $this->visitationsScheduledForDeletion = null;
             }
         }
         if ($this->collVisitations !== null) {
             foreach ($this->collVisitations as $referrerFK) {
                 if (!$referrerFK->isDeleted() && ($referrerFK->isNew() || $referrerFK->isModified())) {
                     $affectedRows += $referrerFK->save($con);
                 }
             }
         }
         $this->alreadyInSave = false;
     }
     return $affectedRows;
 }