function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
BennyButler2BennyButler2 

SOQL not giving custom objects.

Ok, I've dug around the docs, and I'm sure this is easy, but I couldn't find it.

 

Here's my query... run in PHP. 

 

$query = "Select FirstName, LastName, Email, AltEmail__c, Phone, AltPhone__c, Fax__c, Street, City, State, PostalCode  from Lead where Id = '".$_GET['affid']."'"; 

 

I do a var_dump on the results, and all of the built-in fields have data, but all of the custom fields aren't even returned.

I get no error from SF.

I ran the exact same query in Apex Explorer 8, and the data is there.

Any idea?

 

Oh, and a second easy question,  select * from table gives me unexpected token.  Have they disabled returning every column, so you MUST name them out one by one?

 

Thanks 

SuperfellSuperfell

You need to download & use a current WSDL for your login.

 

select * is not supported.