public function providerTestMigration()
 {
     $systemUsers = SystemUserPeer::doSelect(new Criteria());
     // select all
     $ids = array();
     foreach ($systemUsers as $user) {
         $ids[] = array($user->getId());
     }
     return $ids;
 }
Ejemplo n.º 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)
 {
     $objs = null;
     if (empty($pks)) {
         $objs = array();
     } else {
         $criteria = new Criteria(SystemUserPeer::DATABASE_NAME);
         $criteria->add(SystemUserPeer::ID, $pks, Criteria::IN);
         $objs = SystemUserPeer::doSelect($criteria, $con);
     }
     return $objs;
 }
Ejemplo n.º 3
0
function getUsers($lastUser, $userLimitEachLoop)
{
    SystemUserPeer::clearInstancePool();
    $c = new Criteria();
    $c->add(SystemUserPeer::ID, $lastUser, Criteria::GREATER_THAN);
    $c->addAscendingOrderByColumn(SystemUserPeer::ID);
    $c->setLimit($userLimitEachLoop);
    SystemUserPeer::setUseCriteriaFilter(false);
    $users = SystemUserPeer::doSelect($c);
    SystemUserPeer::setUseCriteriaFilter(true);
    return $users;
}