OracleDataContextOptions.InitialLOBFetchSize Property
.NET Standard 2.x
Specifies the initial amount of LOB data that is immediately fetched.
Namespace: SnapObjects.Data.Oracle
Assembly: SnapObjects.Data.Oracle.dll
Syntax
public int InitialLOBFetchSize { get; set; }
Property Value
System.Int32
An int
specifying the number of characters or bytes to fetch initially.
Remarks
This property specifies the number of characters to fetch for the LOB
column data. The InitialLOBFetchSize value is used to determine the length of the LOB column data to fetch, if the LOB column is in the select list. If the select list does not contain a LOB column, the InitialLOBFetchSize value is ignored.
It defaults to -1
, which means the entire LOB data is prefetched and stored in the fetch array.
Setting this property to 0
indicates that the maximum value supported for InitialLOBFetchSize is 2GB.
Applies to
.NET Standard
2.x