public static function getMismatchedRowsForDt($importDt, PropelPDO $conn = null)
 {
     if (!isset($conn)) {
         $conn = Propel::getConnection();
     }
     $c = new Criteria();
     $crit = $c->getNewCriterion(AutoCourseRatingMismatchedPeer::IMPORT_DT, $importDt);
     $c->addAnd($crit);
     $c->addAscendingOrderByColumn(AutoCourseRatingMismatchedPeer::ROW);
     return AutoCourseRatingMismatchedPeer::doSelect($c, $conn);
 }
 /**
  * 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(AutoCourseRatingMismatchedPeer::DATABASE_NAME, Propel::CONNECTION_READ);
     }
     $objs = null;
     if (empty($pks)) {
         $objs = array();
     } else {
         $criteria = new Criteria(AutoCourseRatingMismatchedPeer::DATABASE_NAME);
         $criteria->add(AutoCourseRatingMismatchedPeer::ID, $pks, Criteria::IN);
         $objs = AutoCourseRatingMismatchedPeer::doSelect($criteria, $con);
     }
     return $objs;
 }