Example #1
0
 public function run()
 {
     Meshing_Utils::initialiseDb();
     $outFormat = '%-15s';
     $this->ruleOff($lineLength = 15);
     echo sprintf($outFormat, 'Name', 'Schema', 'Connection') . "\n";
     $this->ruleOff($lineLength);
     /* @var $schema MeshingSchema */
     foreach (MeshingSchemaPeer::doSelect(new Criteria()) as $schema) {
         echo sprintf($outFormat, $schema->getName()) . "\n";
     }
 }
Example #2
0
 /**
  * Retrieve multiple objects by pkey.
  *
  * @param      array $pks List of primary keys
  * @param      PropelPDO $con the connection to use
  * @throws     PropelException Any exceptions caught during processing will be
  *		 rethrown wrapped into a PropelException.
  */
 public static function retrieveByPKs($pks, PropelPDO $con = null)
 {
     if ($con === null) {
         $con = Propel::getConnection(MeshingSchemaPeer::DATABASE_NAME, Propel::CONNECTION_READ);
     }
     $objs = null;
     if (empty($pks)) {
         $objs = array();
     } else {
         $criteria = new Criteria(MeshingSchemaPeer::DATABASE_NAME);
         $criteria->add(MeshingSchemaPeer::ID, $pks, Criteria::IN);
         $objs = MeshingSchemaPeer::doSelect($criteria, $con);
     }
     return $objs;
 }