Image to DB ?

  • Thread starter Thread starter Bernhard Gruber
  • Start date Start date
how do I store an Image (tiff) in MS SQL Server ??

Use a FileStream to read it into a byte[] (array of bytes), and then store
it in a column of type image in your SQL server.

Mark
 
Back
Top