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

I have been trying to upload an image into the table but no joy at all. I have used a store procedure and encrypted my connection strings in the appsettings and use data layer to access the objects.

        string FilePath = FileUpload1.PostedFile.FileName;
        string FileName = Path.GetFileName(FilePath);
        string ext = Path.GetExtension(FileName);
        string ContentType = string.Empty;
        switch (ext)
        {
            case ".jpg":
                ContentType = "Image/jpg";
                break;
            case ".png":
                ContentType = "Image/png";
                break;
            case ".gif":
                ContentType = "Image/gif";
                break;
        }
        if (ContentType != string.Empty)
        {
            Stream fs = FileUpload1.PostedFile.InputStream;
            BinaryReader br = new BinaryReader(fs);
            Byte[] bytes = br.ReadBytes((Int32)fs.Length);

       SqlCommand _SqlCom = new SqlCommand("sp_InsFoto");
       _SqlCom.Parameters.Add("@imgName", SqlDbType.VarChar).Value = FileName;
       _SqlCom.Parameters.Add("@Imgdata", SqlDbType.Binary).Value =bytes;
       _SqlCom.Parameters.Add("@imgContentType", SqlDbType.VarChar).Value =ContentType;
       obj.ExecuteNonQuery(ref _SqlCom);

And I have the store procedure as stated below

CREATE PROCEDURE [dbo].[sp_InsFoto]
(

     @ImgName varchar(50)
    ,@ImgData varbinary(MAX)
    ,@ImgContentType varchar(50)       
)

AS INSERT INTO tbl_Fotos
(
         ImgName
        ,ImgData
        ,ImgContentType   
)

VALUES
(   
         @ImgName
        ,@ImgData
        ,@ImgContentType    
)
share|improve this question

1 Answer

Name of parameters in your code should exactly match names defined in stored procedure, so in the code below change @imgName to @ImgName and @imgContentType to @ImgContentType:

SqlCommand _SqlCom = new SqlCommand("sp_InsFoto");
_SqlCom.Parameters.Add("@imgName", SqlDbType.VarChar).Value = FileName;
_SqlCom.Parameters.Add("@Imgdata", SqlDbType.Binary).Value =bytes;
_SqlCom.Parameters.Add("@imgContentType", SqlDbType.VarChar).Value =ContentType;
obj.ExecuteNonQuery(ref _SqlCom);
share|improve this answer
Thanks for the response, I changed it as you said but no go.ImgName and ImgContentType gets stored but not the ImgData.Please let me know if there is anything to be done to store the images in the binary stream. – Markiv Jul 23 '11 at 9:05

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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