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

Problem Querying Account Info
I am using the partner WSDL this query works for 3 or 4 of our other customers but for some reason when I attempt to get the account info for or latest customer it does not seem to return any values.
sWhereClause1 = " WHERE Id ='" + Session["AccountId"].ToString() + "'";
sQuery1 = "Select AccountNumber, Id, LastModifiedDate, Name, Website, Phone from Account " + sWhereClause1;
dsUser = ConnectSalesForce.GetDataSetFromQuery(sQuery1);
if(dsUser.Tables[0].Rows.Count>0)
Actual SQL = Select AccountNumber, LastModifiedDate, Name, Website, Phone from Account WHERE Id ='00130000003TR6w'