How to store Images in Database and to access it..

JCel

Active member
Joined
Jun 15, 2009
Messages
30
Programming Experience
Beginner
Hi there,

I want to save images from my winforms to the Database...
and also i want to know how to perform data manipulation commands on images...

If you have any other solution also please suggest me...


Regards,
JCel.
 
DML like what? update and delete or you actually want to edit certain bytes of the BLOB?
 
Its like DML, just to store,delete(i.e to delete the existing one and to replace a new img instead of the old) and to retrieve the images! not to edit the images
 
I'd use a stored procedure.
Actually I'd leave the images on disk and just store the path to them, in the db
 
Yes thats the thing i exactly need .... could you please send me a sample program of storing the images path and retrieving the images from that path...

Actual scenario is:

I'm developing a small office appln where i use a picturebox and 2 buttons; one is to load the picture and the other is to delete it..
 
Back
Top