SqlBulkCopy.EnableStreaming Property

Definition

Enables or disables a SqlBulkCopy object to stream data from an IDataReader object.

public:
 property bool EnableStreaming { bool get(); void set(bool value); };
public bool EnableStreaming { get; set; }
member this.EnableStreaming : bool with get, set
Public Property EnableStreaming As Boolean

Property Value

true if a SqlBulkCopy object can stream data from an IDataReader object; otherwise, false. The default is false.

Remarks

When EnableStreaming is true, SqlBulkCopy reads from an IDataReader object using SequentialAccess, optimizing memory usage by using the IDataReader streaming capabilities. When it's set to false, the SqlBulkCopy class loads all the data returned by the IDataReader object into memory before sending it to SQL Server or SQL Azure.

Applies to