* @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(RoomPeer::DATABASE_NAME, Propel::CONNECTION_READ);
        }
        $objs = null;
        if (empty($pks)) {
            $objs = array();
        } else {
            $criteria = new Criteria(RoomPeer::DATABASE_NAME);
            $criteria->add(RoomPeer::ID, $pks, Criteria::IN);
            $objs = RoomPeer::doSelect($criteria, $con);
        }
        return $objs;
    }
}
// BaseRoomPeer
// This is the static code needed to register the MapBuilder for this table with the main Propel class.
//
// NOTE: This static code cannot call methods on the RoomPeer class, because it is not defined yet.
// If you need to use overridden methods, you can add this code to the bottom of the RoomPeer class:
//
// Propel::getDatabaseMap(RoomPeer::DATABASE_NAME)->addTableBuilder(RoomPeer::TABLE_NAME, RoomPeer::getMapBuilder());
//
// Doing so will effectively overwrite the registration below.
Propel::getDatabaseMap(BaseRoomPeer::DATABASE_NAME)->addTableBuilder(BaseRoomPeer::TABLE_NAME, BaseRoomPeer::getMapBuilder());
    {
        if ($con === null) {
            $con = Propel::getConnection(self::DATABASE_NAME);
        }
        $objs = null;
        if (empty($pks)) {
            $objs = array();
        } else {
            $criteria = new Criteria();
            $criteria->add(RoomPeer::ROOM_ID, $pks, Criteria::IN);
            $objs = RoomPeer::doSelect($criteria, $con);
        }
        return $objs;
    }
}
// BaseRoomPeer
// static code to register the map builder for this Peer with the main Propel class
if (Propel::isInit()) {
    // the MapBuilder classes register themselves with Propel during initialization
    // so we need to load them here.
    try {
        BaseRoomPeer::getMapBuilder();
    } catch (Exception $e) {
        Propel::log('Could not initialize Peer: ' . $e->getMessage(), Propel::LOG_ERR);
    }
} else {
    // even if Propel is not yet initialized, the map builder class can be registered
    // now and then it will be loaded when Propel initializes.
    require_once 'src/model/whiteboard/map/RoomMapBuilder.php';
    Propel::registerMapBuilder('src/model/whiteboard.map.RoomMapBuilder');
}