EnableBulkFetch
- Last Updated: December 8, 2020
- 1 minute read
Purpose
Specifies whether the driver can use the Salesforce Bulk API for selects based on the value of the BulkFetchThreshold connection property. If the number of rows expected in the result set exceeds the value of BulkFetchThreshold property, the driver uses the Salesforce Bulk API to execute the select operation. Using the Salesforce Bulk API may significantly reduce the number of Web service calls used to execute a statement and, therefore, may improve performance.
Valid Values
true | false
Behavior
If set to true, the driver can use the
Salesforce Bulk API for selects based on the value of the BulkFetchThreshold connection
property. If the number of rows expected in the result set exceeds the value of
BulkFetchThreshold property, the driver uses the Salesforce Bulk API to execute the select
operation.
If set to false, the driver does not use
the Salesforce Bulk API, and the BulkFetchThreshold property is ignored.
Data Source Method
setEnableBulkFetch
Default
true
Data Type
boolean