Storing a "stream" into db

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I have a stream daha of type System.IO.Stream. I want to strore in in db. Is
this possible? If yes, how can i do that?

Thanx
 
Hello, basulasz!

b> I have a stream daha of type System.IO.Stream. I want to strore in in
b> db. Is this possible? If yes, how can i do that?

If it is binary data you can store it as BLOB ( binary large object ).
( http://www.codeproject.com/cs/database/images2db.asp )

Can you be more specific what underlying data your System.IO.Stream is representing ( is it data from file, memory or smth else )?

--
Regards, Vadym Stetsyak
www: http://vadmyst.blogspot.com
 
Back
Top