Select from following answers:- Specify CommandBehavior.SequentialAccess.

- Use the BeginExecuteReader method.
- Specify CommandBehavior.SingleRow.
- All Above
Specifying CommandBehavior.SequentialAccess provides a way for the DataReader to handle rows that contain columns with large binary values. Rather than loading the entire row, SequentialAccess enables the DataReader to load data as a stream. You can then use the GetBytes or GetChars method to specify a byte location to start the read operation and a limited buffer size for the data being returned.
Show Correct Answer
Source: MeasureUp.Com | |
Alert Moderator