/**
  * Get data of a Message-Event-Relation
  *
  * @param array $arrayCondition Conditions
  * @param bool  $flagGetRecord  Value that set the getting
  *
  * return array Return an array with data of a Message-Event-Relation, otherwise null
  */
 public function getMessageEventRelationWhere(array $arrayCondition, $flagGetRecord = false)
 {
     try {
         //Get data
         $criteria = $this->getMessageEventRelationCriteria();
         foreach ($arrayCondition as $key => $value) {
             if (is_array($value)) {
                 $criteria->add($key, $value[0], $value[1]);
             } else {
                 $criteria->add($key, $value, \Criteria::EQUAL);
             }
         }
         $rsCriteria = \MessageEventRelationPeer::doSelectRS($criteria);
         $rsCriteria->setFetchmode(\ResultSet::FETCHMODE_ASSOC);
         if ($rsCriteria->next()) {
             $row = $rsCriteria->getRow();
             //Return
             return !$flagGetRecord ? $this->getMessageEventRelationDataFromRecord($row) : $row;
         } else {
             //Return
             return null;
         }
     } catch (\Exception $e) {
         throw $e;
     }
 }
 /**
  * Retrieve multiple objects by pkey.
  *
  * @param      array $pks List of primary keys
  * @param      Connection $con the connection to use
  * @throws     PropelException Any exceptions caught during processing will be
  *       rethrown wrapped into a PropelException.
  */
 public static function retrieveByPKs($pks, $con = null)
 {
     if ($con === null) {
         $con = Propel::getConnection(self::DATABASE_NAME);
     }
     $objs = null;
     if (empty($pks)) {
         $objs = array();
     } else {
         $criteria = new Criteria();
         $criteria->add(MessageEventRelationPeer::MSGER_UID, $pks, Criteria::IN);
         $objs = MessageEventRelationPeer::doSelect($criteria, $con);
     }
     return $objs;
 }
 /**
  * Populates the object using an array.
  *
  * This is particularly useful when populating an object from one of the
  * request arrays (e.g. $_POST).  This method goes through the column
  * names, checking to see whether a matching key exists in populated
  * array. If so the setByName() method is called for that column.
  *
  * You can specify the key type of the array by additionally passing one
  * of the class type constants TYPE_PHPNAME, TYPE_COLNAME, TYPE_FIELDNAME,
  * TYPE_NUM. The default key type is the column's phpname (e.g. 'authorId')
  *
  * @param      array  $arr     An array to populate the object from.
  * @param      string $keyType The type of keys the array uses.
  * @return     void
  */
 public function fromArray($arr, $keyType = BasePeer::TYPE_PHPNAME)
 {
     $keys = MessageEventRelationPeer::getFieldNames($keyType);
     if (array_key_exists($keys[0], $arr)) {
         $this->setMsgerUid($arr[$keys[0]]);
     }
     if (array_key_exists($keys[1], $arr)) {
         $this->setPrjUid($arr[$keys[1]]);
     }
     if (array_key_exists($keys[2], $arr)) {
         $this->setEvnUidThrow($arr[$keys[2]]);
     }
     if (array_key_exists($keys[3], $arr)) {
         $this->setEvnUidCatch($arr[$keys[3]]);
     }
 }