Ejemplo n.º 1
0
 public function reload($deep = false, PropelPDO $con = null)
 {
     if ($this->isDeleted()) {
         throw new PropelException("Cannot reload a deleted object.");
     }
     if ($this->isNew()) {
         throw new PropelException("Cannot reload an unsaved object.");
     }
     if ($con === null) {
         $con = Propel::getConnection(CiclolectivoPeer::DATABASE_NAME, Propel::CONNECTION_READ);
     }
     $stmt = CiclolectivoPeer::doSelectStmt($this->buildPkeyCriteria(), $con);
     $row = $stmt->fetch(PDO::FETCH_NUM);
     $stmt->closeCursor();
     if (!$row) {
         throw new PropelException('Cannot find matching row in the database to reload object values.');
     }
     $this->hydrate($row, 0, true);
     if ($deep) {
         $this->aEstablecimiento = null;
         $this->collTurnos = null;
         $this->lastTurnoCriteria = null;
         $this->collPeriodos = null;
         $this->lastPeriodoCriteria = null;
         $this->collFeriados = null;
         $this->lastFeriadoCriteria = null;
     }
 }
Ejemplo n.º 2
0
 public static function doSelect(Criteria $criteria, PropelPDO $con = null)
 {
     return CiclolectivoPeer::populateObjects(CiclolectivoPeer::doSelectStmt($criteria, $con));
 }