Archive for August, 2008
Retrieve more than 200 records from SalesForce using ActiveSalesForce gem
When you do a find on an ActiveSalesForce model, there is a default limit of 200 records. To override that value, pass “:limit => 0″ in your find. Here is an example
Contact.find(:all, :limit => 0)
Hope this saves some frustrations.
No comments