IgnoreErrorsOnPagination
This property allows the driver to skip pages that encounter specified server errors during paginated queries and continue retrieving the remaining pages. Note: This property only affects Data Center tables with client-side paging.
Data Type
string
Default Value
"None"
Remarks
When enabled, this property allows the driver to handle specific errors gracefully during paginated queries. If a server error occurs while fetching a page or batch — such as an HTTP 5xx status code — the error will be logged, the problematic page will be skipped, and the driver will proceed to retrieve the remaining pages. As a result, the query will return all data that was successfully fetched.
This property accepts:
* - Ignore all HTTP server error status codes
None - Disable error skipping (default)
Comma-separated list of server error status codes (e.g., "500,501,503") - Ignore only the specified server errors