Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

In my webpage image get from file upload control and it has to be store in sql server.how to write stored procedure for save image in sql server?

share|improve this question
3  
Anything you have done so far ?? – huMpty duMpty Jun 21 '12 at 8:21

closed as not a real question by casperOne Jun 21 '12 at 14:08

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.

2 Answers

Some sample code(not tested, could need some fixes):

CREATE PROCEDURE SaveFile(@id int, @file varbinary(max)) AS

INSERT INTO MyFiles VALUES(@id, @file)
GO

In the .NET code:

SqlCommand comm = new SqlCommand(@"SaveFile")
comm.CommandType = CommandType.StoredProcedure;

SqlParameter id = new SqlParameter("int", SqlDbType.Int);
id.value = 1; // some id

FileStream fileStream = ... your file;
byte[] buf = new byte[fileStream.length];
fileStream.Read(buf, 0, buf.length);
SqlParameter file = new SqlParameter("@file", SqlDbType.VarBinary, buf.Length);
file.Value = buf;

comm.Parameters.Add(id)    
comm.Parameters.Add(file)

comm.Execute();
share|improve this answer
how to retrieve that image and display in a place? – giri Jun 21 '12 at 10:08
how to show that pic?in panel r wat??pls guide me.. – giri Jun 21 '12 at 10:10
The question is about storing the image in database. And I think it is already answered. How to show the pic? It is up to you to decide what UI element to use and how. In general to read the image - follow the procedure in reverse order. SELECT file FROM table; fileStream.Write(buf); However you might need to make a dynamic page to read the image and return it keeping in mind the Content-Type. – Tisho Jun 21 '12 at 11:08

Just use the usual stored procedure, just use a different datatype, save it as byte array, so you will have to convert first your image to byte array before passing it as parameter to your stored procedure, save the length and file type as well.

Here is a sample stored procedure. I'll leave the rest to you. If you know how to execute queries in your web app, you can call this procedure. just google for it.

USE [mydatabasename]
GO
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO

ALTER PROCEDURE [dbo].[myprocedurename]

    @ImageFile image,
    @FileType nvarchar(10),
    @FileSize int
AS
-- INSERT a new row in the table.
INSERT [dbo].[mytablename]
(
    [ImageFile],
    [FileType ],
    [FileSize ]
)
VALUES
(
    @ImageFile,
    @FileType,
    @FileSize
)
-- Get the IDENTITY value for the row just inserted.
SELECT @ImageId=SCOPE_IDENTITY()

i guess the image file type will be obsolete so you should use a different file type for saving your bytes

share|improve this answer
can u pls give me the coding both asp.net and stored procedure??? – giri Jun 21 '12 at 8:16
how to retrieve that image and display in a place? – giri Jun 21 '12 at 10:08
how to show that pic?in panel r wat??pls guide me.. – giri Jun 21 '12 at 10:10
first you have to retrieve the byte array, and then display it using http content response – Philip Badilla Jun 21 '12 at 10:44

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