/**
  * Find object by primary key using raw SQL to go fast.
  * Bypass doSelect() and the object formatter by using generated code.
  *
  * @param     mixed $key Primary key to use for the query
  * @param     PropelPDO $con A connection object
  *
  * @return                 LeasingParkingLeads A model object, or null if the key is not found
  * @throws PropelException
  */
 protected function findPkSimple($key, $con)
 {
     $sql = 'SELECT `id`, `application_number`, `salutation`, `fname`, `lname`, `gender`, `age`, `birthday`, `email`, `mobile`, `property`, `unit`, `slots`, `ps_number`, `first_heard`, `payment_terms`, `payment_type`, `date_added`, `date_approved`, `date_enrolled`, `date_expiry`, `date_renewal`, `status`, `prev_status`, `client_ip`, `client_id`, `campaign`, `medium`, `source`, `gacountry`, `processing`, `processed_by` FROM `parking_leads` WHERE `id` = :p0';
     try {
         $stmt = $con->prepare($sql);
         $stmt->bindValue(':p0', $key, PDO::PARAM_INT);
         $stmt->execute();
     } catch (Exception $e) {
         Propel::log($e->getMessage(), Propel::LOG_ERR);
         throw new PropelException(sprintf('Unable to execute SELECT statement [%s]', $sql), $e);
     }
     $obj = null;
     if ($row = $stmt->fetch(PDO::FETCH_NUM)) {
         $obj = new LeasingParkingLeads();
         $obj->hydrate($row);
         LeasingParkingLeadsPeer::addInstanceToPool($obj, (string) $key);
     }
     $stmt->closeCursor();
     return $obj;
 }