I have a table named Blob (Id (int), Data (Image)). I need to use SqlDataReader to get that image data. Note that I dont want to Response.Binarywrite() the data to the browser. I just need that binary data as byte[] to use the same for some internal operations. Only way I can think of is getting id using SqlDataReader and the again use SqlCommand.ExecuteScalar() to get that as byte[] for a given id. Can I use just the SqlDataReader (SqlCommand.ExecuteReader) to get that image data as byte[]? Am I missing anything?
|
You should be able to get it via: Also note that the |
|||||
|
|
Yes, you can use You may just be able to use the indexer and cast the result to a byte array - I'm not sure. Worth a try :) |
|||||
|
|
From MSDN. Not sure why I couldn't find that before.
|
|||||
|
|
No need of using the reader. Just use a dataset to fetch values from the database(using stored Proc or any other method) and just type cast it with byte(code below) and store it in a byte array. Your work is done.
|
|||
|
|