hi i have created one stored procedure for this, the code is below, before that i have created the table create table save_image ( im image null ) create proc sav @img image as begin insert into save_image (im) values (@img) end now, what is code for storing the image to sqlserver database (as a image data type).
U
User 1714915
@User 1714915
Posts
-
How can i store the images to sql server database from asp.net webpages(using vbscript only) -
storing images into sql server database from asp.net webformhi i want the code to store the images to database plz help
-
How can i store the images to sql server database from asp.net webpages(using vbscript only)hi for opening the image file location in our disk, i put the file field control.. into the webform. plz tell the procedure to store the image from that file field control to the sql server database. thank you