saving documents in sql2005 using vb.net

  • Thread starter Thread starter Zrod
  • Start date Start date
Z

Zrod

hi.
i need to be able to save documenets (files) in an sql binary field.
i don not know in advance teh typt of document,
Anyone can help ion writing the code required?
Thanks
 
Zrod said:
hi.
i need to be able to save documenets (files) in an sql binary field.
i don not know in advance teh typt of document,
Anyone can help ion writing the code required?

Your VB.Net Help should give you some examples. Look in the Index for
ADO.NET and then the BLOBs subsection. It is stored and retrieved similar to
any other table column.

For Classic ADO you would use GetChunk and AppendChunk.
 
Back
Top