I am not able to save an image from a form1's picbox.image into my access DataBase . How can i Save the image into access db and which datatype do i need to use for saving an image into accessdb

link|improve this question

0% accept rate
feedback

1 Answer

In MS Access you need to use the OLE Object data type.

Here's some C# code to save the image into the database. Sorry it isn't VB.Net. http://www.codeproject.com/KB/database/AccessBlob.aspx

Here's another approach using VB.Net: http://coder000.com/store-retrieve-binary-data-blobs-audio-video-image-exe-etc-in-database-in-vb-net/

link|improve this answer
1  
You know it is almost never a good idea to save images to Access, yesno? – Remou Mar 10 '11 at 15:39
Very much agree, Remou. I guess I was just trying to give the OP what he wants, not what I think he needs. – HK1 Mar 10 '11 at 17:15
I highly recommend doing both, since to me, that makes a much higher quality answer. – David-W-Fenton Mar 12 '11 at 1:53
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.