예제 #1
0
 /**
  * This is a method for emulating ON DELETE CASCADE for DBs that don't support this
  * feature (like MySQL or SQLite).
  *
  * This method is not very speedy because it must perform a query first to get
  * the implicated records and then perform the deletes by calling those Peer classes.
  *
  * This method should be used within a transaction if possible.
  *
  * @param      Criteria $criteria
  * @param      PropelPDO $con
  * @return int The number of affected rows (if supported by underlying database driver).
  */
 protected static function doOnDeleteCascade(Criteria $criteria, PropelPDO $con)
 {
     // initialize var to track total num of affected rows
     $affectedRows = 0;
     // first find the objects that are implicated by the $criteria
     $objects = UserPeer::doSelect($criteria, $con);
     foreach ($objects as $obj) {
         // delete related UserGroup objects
         $criteria = new Criteria(UserGroupPeer::DATABASE_NAME);
         $criteria->add(UserGroupPeer::USER_ID, $obj->getId());
         $affectedRows += UserGroupPeer::doDelete($criteria, $con);
         // delete related UserRole objects
         $criteria = new Criteria(UserRolePeer::DATABASE_NAME);
         $criteria->add(UserRolePeer::USER_ID, $obj->getId());
         $affectedRows += UserRolePeer::doDelete($criteria, $con);
     }
     return $affectedRows;
 }
예제 #2
0
 public function delete($con = null)
 {
     if ($this->isDeleted()) {
         throw new PropelException("This object has already been deleted.");
     }
     if ($con === null) {
         $con = Propel::getConnection(UserGroupPeer::DATABASE_NAME);
     }
     try {
         $con->begin();
         UserGroupPeer::doDelete($this, $con);
         $this->setDeleted(true);
         $con->commit();
     } catch (PropelException $e) {
         $con->rollback();
         throw $e;
     }
 }