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

Limited Queries?
I run the query
SELECT Id,LastName,FirstName FROM Account
and only about a 1000 records are called?
Why is this.. I need to call all of them. Is there a way of leap frogging in soql?
SELECT Id,LastName,FirstName FROM Account LIMIT 10,200
and find the number of rows in the query?
I'm guessing from the dollar sign that you're using PHP. There are good examples on how to do this here:
http://wiki.developerforce.com/index.php/PHP_Toolkit_13.0_Samples
Enterprise
http://wiki.developerforce.com/index.php/PHP_Toolkit_13.0_QueryMore_Sample_(Enterprise)
Partner
http://wiki.developerforce.com/index.php/PHP_Toolkit_13.0_QueryMore_Sample_(Partner)
All Answers
Dear Simon,
Am I right in saying that QueryOptions(200);
sets a jump of 200 records per leap?
so its like LIMIT 0,200
then LIMIT 201, 400
etc...etc..
second question - is this considered ALL one call to salesforce... or is it multiple calls?
I'm guessing from the dollar sign that you're using PHP. There are good examples on how to do this here:
http://wiki.developerforce.com/index.php/PHP_Toolkit_13.0_Samples
Enterprise
http://wiki.developerforce.com/index.php/PHP_Toolkit_13.0_QueryMore_Sample_(Enterprise)
Partner
http://wiki.developerforce.com/index.php/PHP_Toolkit_13.0_QueryMore_Sample_(Partner)