Select from following answers:- Read the ProductId column before reading the Photo column.
- Read the Photo column before accessing the ProductId column.
- Read the columns using the SqlDataReader.GetSqlBinary method.
- All Above
When using SequentialAccess, you must access the fields returned by the DataReader in order. In this case you must access the ProductId column and then the Photo column.
The SqlDataReader.GetSqlBinary method does not buffer or allow you to chunk binary large object data.
Show Correct Answer
Source: MeasureUp.Com | |
Alert Moderator