BLOB

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

Guest

Hi all,

I really, need your expertise. I have an image field in an MSDE 2000 SP3
database. So far I can save images but can not clear them without deleting
the entire record.

Can anyone show me how to clear an image field using VB .Net 2003

Thank you for all your help
 
Ken said:
Hi all,

I really, need your expertise. I have an image field in an MSDE 2000 SP3
database. So far I can save images but can not clear them without deleting
the entire record.

Can anyone show me how to clear an image field using VB .Net 2003

saving an empty byte array in them would help? You can also set the value to
DBNull.Value or Nothing (pass that value to the SqlParameter in your query)

Frans.
 
Back
Top