public function delete($con = null) { if ($this->isDeleted()) { throw new PropelException("This object has already been deleted."); } if ($con === null) { $con = Propel::getConnection(BranchPeer::DATABASE_NAME); } try { $con->begin(); BranchPeer::doDelete($this, $con); $this->setDeleted(true); $con->commit(); } catch (PropelException $e) { $con->rollback(); throw $e; } }
/** * 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 = RepositoryPeer::doSelect($criteria, $con); foreach ($objects as $obj) { // delete related Branch objects $criteria = new Criteria(BranchPeer::DATABASE_NAME); $criteria->add(BranchPeer::REPOSITORY_ID, $obj->getId()); $affectedRows += BranchPeer::doDelete($criteria, $con); // delete related StatusAction objects $criteria = new Criteria(StatusActionPeer::DATABASE_NAME); $criteria->add(StatusActionPeer::REPOSITORY_ID, $obj->getId()); $affectedRows += StatusActionPeer::doDelete($criteria, $con); } return $affectedRows; }