Esempio n. 1
0
 /**
  * Clear the instance pool.
  *
  * @return     void
  */
 public static function clearInstancePool()
 {
     self::$instances = array();
 }
Esempio n. 2
0
    }
    /**
     * Retrieve multiple objects by pkey.
     *
     * @param      array $pks List of primary keys
     * @param      PropelPDO $con the connection to use
     * @return Action[]
     * @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(ActionPeer::DATABASE_NAME, Propel::CONNECTION_READ);
        }
        $objs = null;
        if (empty($pks)) {
            $objs = array();
        } else {
            $criteria = new Criteria(ActionPeer::DATABASE_NAME);
            $criteria->add(ActionPeer::ID, $pks, Criteria::IN);
            $objs = ActionPeer::doSelect($criteria, $con);
        }
        return $objs;
    }
}
// BaseActionPeer
// This is the static code needed to register the TableMap for this table with the main Propel class.
//
BaseActionPeer::buildTableMap();