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
Mark CrooksMark Crooks 

Does anyone know where the default 'Contacts' table is held?

Hi,

I've been tasked with creating an AIR app to work with SalesForce.
Following the example here...
https://developer.salesforce.com/page/Taking_Salesforce_Data_Offline_Using_Adobe_AIR

"airConnection.query("Select Id, FirstName, LastName From Contact", new AsyncResponder("

I see from the line above that airConnection accesses a Contact table and finds 20 results.
The data is stored online somewhere. Does anyone know where this table exists so I can view it?

Thanks,

Mark
Sforce.NinjaSforce.Ninja
You could use your credintials in the code to login to Salesforce (usually its login.salesforce.com or for sandbox test.salescforce.com). You can see Contact tab.

Alternatively you can use https://workbench.developerforce.com/login.php to do the same
Mark CrooksMark Crooks
Wonderful! Thanks for taking the time to reply.