Solved
Forum Discussion
tristaanogre
9 years agoEsteemed Contributor
Rather than "Value", you might want to use the GetChunk method. What you'll need to do is get the ActualSize of the field and then use GetChunk to retrieve it. I've not tested this but it might look something like this:
rs.MoveFirst(); var blobSize = rs.Fields("slices").ActualSize; var blob = rs.Fields("slices").GetChunk(blobSize);