You need to sign in to do that
Don't have an account?

Fatal error: Class 'QueryResult' not found
what does this error means?
Fatal error: Class 'QueryResult' not found in....
hers my code... thanks!
$query = 'Select Id, FirstName from contact';
$response = $mySforceConnection->query(($query));
$queryResult = new QueryResult($response);
$response = $mySforceConnection->query(($query));
$queryResult = new QueryResult($response);
foreach ($response->records as $record) {
$sobject = new SObject($record);
echo $sobject->fields->ContactId;
echo "\r\n";
}
} catch (Exception $e) {
echo $e->faultstring;
}
$sobject = new SObject($record);
echo $sobject->fields->ContactId;
echo "\r\n";
}
} catch (Exception $e) {
echo $e->faultstring;
}
All Answers
hi since you found the solution it would be great if you posted it!!
thanks
tam