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
Lightning UserLightning User 

Can't query from ApexPage object using 13.0 toolkit

Hi, I was waiting for the API 13.0 support from the PHP toolkit, but I still can't query from ApexPage. I can understand it not working in 11.0 because ApexPage is not an object for that API, but it should work with API 13 support. What's going on?
Tran ManTran Man
Hi, I just tried it and works for me.

Try this query:

Code:
Select a.SystemModstamp, a.Status, a.NamespacePrefix, a.Name, a.LengthWithoutComments, a.LastModifiedDate, a.LastModifiedById, a.IsValid, a.Id, a.CreatedDate, a.CreatedById, a.BodyCrc, a.Body, a.ApiVersion From ApexClass a

 

Lightning UserLightning User

Tran Man wrote:
Hi, I just tried it and works for me.

Try this query:

Code:
Select a.SystemModstamp, a.Status, a.NamespacePrefix, a.Name, a.LengthWithoutComments, a.LastModifiedDate, a.LastModifiedById, a.IsValid, a.Id, a.CreatedDate, a.CreatedById, a.BodyCrc, a.Body, a.ApiVersion From ApexClass a

 

That is querying from ApexClass, I want to query from ApexPage.

Edit: Problem solved, was using an old server url to login.






Message Edited by Gillberg on 09-29-2008 11:18 AM