Hey, I'm developing an application for CF where I need to store images in the database. Due to memory constraints, I can't use a byte array, I have to use streams.
I've created a BlobStream to read images out of the database, however writing images to databases in chunks are proving difficult.
The BlobStream uses DbDataReader.GetBytes() to read data out in chunks, but I can't find an equivalent method to write data. Is there such a thing in ADO.NET?
Any other suggestions?