public static function doSelectJoinAllExceptTipoiva(Criteria $c, $con = null, $join_behavior = Criteria::LEFT_JOIN) { $c = clone $c; if ($c->getDbName() == Propel::getDefaultDB()) { $c->setDbName(self::DATABASE_NAME); } CuentaPeer::addSelectColumns($c); $startcol2 = CuentaPeer::NUM_COLUMNS - CuentaPeer::NUM_LAZY_LOAD_COLUMNS; ProvinciaPeer::addSelectColumns($c); $startcol3 = $startcol2 + (ProvinciaPeer::NUM_COLUMNS - ProvinciaPeer::NUM_LAZY_LOAD_COLUMNS); $c->addJoin(array(CuentaPeer::FK_PROVINCIA_ID), array(ProvinciaPeer::ID), $join_behavior); $stmt = BasePeer::doSelect($c, $con); $results = array(); while ($row = $stmt->fetch(PDO::FETCH_NUM)) { $key1 = CuentaPeer::getPrimaryKeyHashFromRow($row, 0); if (null !== ($obj1 = CuentaPeer::getInstanceFromPool($key1))) { } else { $omClass = CuentaPeer::getOMClass(); $cls = substr('.' . $omClass, strrpos('.' . $omClass, '.') + 1); $obj1 = new $cls(); $obj1->hydrate($row); CuentaPeer::addInstanceToPool($obj1, $key1); } $key2 = ProvinciaPeer::getPrimaryKeyHashFromRow($row, $startcol2); if ($key2 !== null) { $obj2 = ProvinciaPeer::getInstanceFromPool($key2); if (!$obj2) { $omClass = ProvinciaPeer::getOMClass(); $cls = substr('.' . $omClass, strrpos('.' . $omClass, '.') + 1); $obj2 = new $cls(); $obj2->hydrate($row, $startcol2); ProvinciaPeer::addInstanceToPool($obj2, $key2); } $obj2->addCuenta($obj1); } $results[] = $obj1; } $stmt->closeCursor(); return $results; }
public static function doSelectJoinAllExceptNivelInstruccion(Criteria $c, $con = null, $join_behavior = Criteria::LEFT_JOIN) { $c = clone $c; if ($c->getDbName() == Propel::getDefaultDB()) { $c->setDbName(self::DATABASE_NAME); } ResponsablePeer::addSelectColumns($c); $startcol2 = ResponsablePeer::NUM_COLUMNS - ResponsablePeer::NUM_LAZY_LOAD_COLUMNS; ProvinciaPeer::addSelectColumns($c); $startcol3 = $startcol2 + (ProvinciaPeer::NUM_COLUMNS - ProvinciaPeer::NUM_LAZY_LOAD_COLUMNS); TipodocumentoPeer::addSelectColumns($c); $startcol4 = $startcol3 + (TipodocumentoPeer::NUM_COLUMNS - TipodocumentoPeer::NUM_LAZY_LOAD_COLUMNS); CuentaPeer::addSelectColumns($c); $startcol5 = $startcol4 + (CuentaPeer::NUM_COLUMNS - CuentaPeer::NUM_LAZY_LOAD_COLUMNS); RolResponsablePeer::addSelectColumns($c); $startcol6 = $startcol5 + (RolResponsablePeer::NUM_COLUMNS - RolResponsablePeer::NUM_LAZY_LOAD_COLUMNS); $c->addJoin(array(ResponsablePeer::FK_PROVINCIA_ID), array(ProvinciaPeer::ID), $join_behavior); $c->addJoin(array(ResponsablePeer::FK_TIPODOCUMENTO_ID), array(TipodocumentoPeer::ID), $join_behavior); $c->addJoin(array(ResponsablePeer::FK_CUENTA_ID), array(CuentaPeer::ID), $join_behavior); $c->addJoin(array(ResponsablePeer::FK_ROLRESPONSABLE_ID), array(RolResponsablePeer::ID), $join_behavior); $stmt = BasePeer::doSelect($c, $con); $results = array(); while ($row = $stmt->fetch(PDO::FETCH_NUM)) { $key1 = ResponsablePeer::getPrimaryKeyHashFromRow($row, 0); if (null !== ($obj1 = ResponsablePeer::getInstanceFromPool($key1))) { } else { $omClass = ResponsablePeer::getOMClass(); $cls = substr('.' . $omClass, strrpos('.' . $omClass, '.') + 1); $obj1 = new $cls(); $obj1->hydrate($row); ResponsablePeer::addInstanceToPool($obj1, $key1); } $key2 = ProvinciaPeer::getPrimaryKeyHashFromRow($row, $startcol2); if ($key2 !== null) { $obj2 = ProvinciaPeer::getInstanceFromPool($key2); if (!$obj2) { $omClass = ProvinciaPeer::getOMClass(); $cls = substr('.' . $omClass, strrpos('.' . $omClass, '.') + 1); $obj2 = new $cls(); $obj2->hydrate($row, $startcol2); ProvinciaPeer::addInstanceToPool($obj2, $key2); } $obj2->addResponsable($obj1); } $key3 = TipodocumentoPeer::getPrimaryKeyHashFromRow($row, $startcol3); if ($key3 !== null) { $obj3 = TipodocumentoPeer::getInstanceFromPool($key3); if (!$obj3) { $omClass = TipodocumentoPeer::getOMClass(); $cls = substr('.' . $omClass, strrpos('.' . $omClass, '.') + 1); $obj3 = new $cls(); $obj3->hydrate($row, $startcol3); TipodocumentoPeer::addInstanceToPool($obj3, $key3); } $obj3->addResponsable($obj1); } $key4 = CuentaPeer::getPrimaryKeyHashFromRow($row, $startcol4); if ($key4 !== null) { $obj4 = CuentaPeer::getInstanceFromPool($key4); if (!$obj4) { $omClass = CuentaPeer::getOMClass(); $cls = substr('.' . $omClass, strrpos('.' . $omClass, '.') + 1); $obj4 = new $cls(); $obj4->hydrate($row, $startcol4); CuentaPeer::addInstanceToPool($obj4, $key4); } $obj4->addResponsable($obj1); } $key5 = RolResponsablePeer::getPrimaryKeyHashFromRow($row, $startcol5); if ($key5 !== null) { $obj5 = RolResponsablePeer::getInstanceFromPool($key5); if (!$obj5) { $omClass = RolResponsablePeer::getOMClass(); $cls = substr('.' . $omClass, strrpos('.' . $omClass, '.') + 1); $obj5 = new $cls(); $obj5->hydrate($row, $startcol5); RolResponsablePeer::addInstanceToPool($obj5, $key5); } $obj5->addResponsable($obj1); } $results[] = $obj1; } $stmt->closeCursor(); return $results; }
public function getCuentas($criteria = null, PropelPDO $con = null) { if ($criteria === null) { $criteria = new Criteria(ProvinciaPeer::DATABASE_NAME); } elseif ($criteria instanceof Criteria) { $criteria = clone $criteria; } if ($this->collCuentas === null) { if ($this->isNew()) { $this->collCuentas = array(); } else { $criteria->add(CuentaPeer::FK_PROVINCIA_ID, $this->id); CuentaPeer::addSelectColumns($criteria); $this->collCuentas = CuentaPeer::doSelect($criteria, $con); } } else { if (!$this->isNew()) { $criteria->add(CuentaPeer::FK_PROVINCIA_ID, $this->id); CuentaPeer::addSelectColumns($criteria); if (!isset($this->lastCuentaCriteria) || !$this->lastCuentaCriteria->equals($criteria)) { $this->collCuentas = CuentaPeer::doSelect($criteria, $con); } } } $this->lastCuentaCriteria = $criteria; return $this->collCuentas; }
public static function doSelectJoinAllExceptEstadosalumnos(Criteria $c, $con = null, $join_behavior = Criteria::LEFT_JOIN) { $c = clone $c; if ($c->getDbName() == Propel::getDefaultDB()) { $c->setDbName(self::DATABASE_NAME); } AlumnoPeer::addSelectColumns($c); $startcol2 = AlumnoPeer::NUM_COLUMNS - AlumnoPeer::NUM_LAZY_LOAD_COLUMNS; ProvinciaPeer::addSelectColumns($c); $startcol3 = $startcol2 + (ProvinciaPeer::NUM_COLUMNS - ProvinciaPeer::NUM_LAZY_LOAD_COLUMNS); TipodocumentoPeer::addSelectColumns($c); $startcol4 = $startcol3 + (TipodocumentoPeer::NUM_COLUMNS - TipodocumentoPeer::NUM_LAZY_LOAD_COLUMNS); EstablecimientoPeer::addSelectColumns($c); $startcol5 = $startcol4 + (EstablecimientoPeer::NUM_COLUMNS - EstablecimientoPeer::NUM_LAZY_LOAD_COLUMNS); CuentaPeer::addSelectColumns($c); $startcol6 = $startcol5 + (CuentaPeer::NUM_COLUMNS - CuentaPeer::NUM_LAZY_LOAD_COLUMNS); ConceptobajaPeer::addSelectColumns($c); $startcol7 = $startcol6 + (ConceptobajaPeer::NUM_COLUMNS - ConceptobajaPeer::NUM_LAZY_LOAD_COLUMNS); PaisPeer::addSelectColumns($c); $startcol8 = $startcol7 + (PaisPeer::NUM_COLUMNS - PaisPeer::NUM_LAZY_LOAD_COLUMNS); $c->addJoin(array(AlumnoPeer::FK_PROVINCIA_ID), array(ProvinciaPeer::ID), $join_behavior); $c->addJoin(array(AlumnoPeer::FK_TIPODOCUMENTO_ID), array(TipodocumentoPeer::ID), $join_behavior); $c->addJoin(array(AlumnoPeer::FK_ESTABLECIMIENTO_ID), array(EstablecimientoPeer::ID), $join_behavior); $c->addJoin(array(AlumnoPeer::FK_CUENTA_ID), array(CuentaPeer::ID), $join_behavior); $c->addJoin(array(AlumnoPeer::FK_CONCEPTOBAJA_ID), array(ConceptobajaPeer::ID), $join_behavior); $c->addJoin(array(AlumnoPeer::FK_PAIS_ID), array(PaisPeer::ID), $join_behavior); $stmt = BasePeer::doSelect($c, $con); $results = array(); while ($row = $stmt->fetch(PDO::FETCH_NUM)) { $key1 = AlumnoPeer::getPrimaryKeyHashFromRow($row, 0); if (null !== ($obj1 = AlumnoPeer::getInstanceFromPool($key1))) { } else { $omClass = AlumnoPeer::getOMClass(); $cls = substr('.' . $omClass, strrpos('.' . $omClass, '.') + 1); $obj1 = new $cls(); $obj1->hydrate($row); AlumnoPeer::addInstanceToPool($obj1, $key1); } $key2 = ProvinciaPeer::getPrimaryKeyHashFromRow($row, $startcol2); if ($key2 !== null) { $obj2 = ProvinciaPeer::getInstanceFromPool($key2); if (!$obj2) { $omClass = ProvinciaPeer::getOMClass(); $cls = substr('.' . $omClass, strrpos('.' . $omClass, '.') + 1); $obj2 = new $cls(); $obj2->hydrate($row, $startcol2); ProvinciaPeer::addInstanceToPool($obj2, $key2); } $obj2->addAlumno($obj1); } $key3 = TipodocumentoPeer::getPrimaryKeyHashFromRow($row, $startcol3); if ($key3 !== null) { $obj3 = TipodocumentoPeer::getInstanceFromPool($key3); if (!$obj3) { $omClass = TipodocumentoPeer::getOMClass(); $cls = substr('.' . $omClass, strrpos('.' . $omClass, '.') + 1); $obj3 = new $cls(); $obj3->hydrate($row, $startcol3); TipodocumentoPeer::addInstanceToPool($obj3, $key3); } $obj3->addAlumno($obj1); } $key4 = EstablecimientoPeer::getPrimaryKeyHashFromRow($row, $startcol4); if ($key4 !== null) { $obj4 = EstablecimientoPeer::getInstanceFromPool($key4); if (!$obj4) { $omClass = EstablecimientoPeer::getOMClass(); $cls = substr('.' . $omClass, strrpos('.' . $omClass, '.') + 1); $obj4 = new $cls(); $obj4->hydrate($row, $startcol4); EstablecimientoPeer::addInstanceToPool($obj4, $key4); } $obj4->addAlumno($obj1); } $key5 = CuentaPeer::getPrimaryKeyHashFromRow($row, $startcol5); if ($key5 !== null) { $obj5 = CuentaPeer::getInstanceFromPool($key5); if (!$obj5) { $omClass = CuentaPeer::getOMClass(); $cls = substr('.' . $omClass, strrpos('.' . $omClass, '.') + 1); $obj5 = new $cls(); $obj5->hydrate($row, $startcol5); CuentaPeer::addInstanceToPool($obj5, $key5); } $obj5->addAlumno($obj1); } $key6 = ConceptobajaPeer::getPrimaryKeyHashFromRow($row, $startcol6); if ($key6 !== null) { $obj6 = ConceptobajaPeer::getInstanceFromPool($key6); if (!$obj6) { $omClass = ConceptobajaPeer::getOMClass(); $cls = substr('.' . $omClass, strrpos('.' . $omClass, '.') + 1); $obj6 = new $cls(); $obj6->hydrate($row, $startcol6); ConceptobajaPeer::addInstanceToPool($obj6, $key6); } $obj6->addAlumno($obj1); } $key7 = PaisPeer::getPrimaryKeyHashFromRow($row, $startcol7); if ($key7 !== null) { $obj7 = PaisPeer::getInstanceFromPool($key7); if (!$obj7) { $omClass = PaisPeer::getOMClass(); $cls = substr('.' . $omClass, strrpos('.' . $omClass, '.') + 1); $obj7 = new $cls(); $obj7->hydrate($row, $startcol7); PaisPeer::addInstanceToPool($obj7, $key7); } $obj7->addAlumno($obj1); } $results[] = $obj1; } $stmt->closeCursor(); return $results; }