使用Parameter.Dbtype(存储过程)将Image插入SQL Server数据库

时间:2015-03-08 22:23:00

标签: c# .net sql-server winforms

我正在尝试将IMAGE插入SQL Server数据库(通过存储过程),为此我使用的是一个具有参数详细信息的类,并且在按钮点击事件后面的代码中我试图映射值。

param = comm.CreateParameter();
param.ParameterName = "Imagedata";
param.Value = Imagedata;
param.DbType = DbType.String;
comm.Parameters.Add(param);

我尝试使用Binary而不是String,我收到一条错误,指出无法将String转换为Byte []。我在SQL中使用的数据类型是Varbinary(MAX)。

bool a = false;
String imagefilepath = @fileName;
FileStream imagefile = new FileStream(imagefilepath, FileMode.Open, FileAccess.Read);
Imagedata = new Byte[imagefile.Length];
imagefile.Read(Imagedata, 0, Imagedata.Length);
imagefile.Flush();
imagefile.Close();
a = Users.InsertUser(this.txt_userid.Text.Trim().ToUpper(),
                     this.txt_mobnum.Text.Trim().ToUpper(), 
                     this.txt_name.Text,
                     this.role_cmbox.Text.Trim().ToUpper(), 
                     this.box_branch.Text.Trim().ToUpper(), 
                     this.txt_designation.Text.Trim().ToUpper(), 
                     this.txt_repassword.Text.Trim().ToUpper(), 
                     this.Imagedata.Length.ToString());

存储过程

[dbo].[InsertUser](@UserID varchar(15),@Password varchar(20),@UserName varchar(20),  
@Role varchar(15),@Branch varchar(15),@Designation varchar(15),@Mobilenumber varchar(15),@Imagedata varbinary(MAX))    
as  
INSERT INTO[LBank].dbo.[Login]
           ([UserID]
           ,[Password]  
           ,[UserName]  
           ,[Role]
           ,[Branch]
           ,[Designation]
           ,[Mobilenumber]
           ,[Imagedata]
           )   
VALUES(@UserID,@Password,@UserName,@Role,@Branch,@Designation,@Mobilenumber,@Imagedata); 

DbType应该是什么以及如何成功解决和插入图像?

1 个答案:

答案 0 :(得分:4)

  1. 您必须使用SqlDbType代替DbType
  2. 对于文件/图片到Byte Array,您可以使用File.ReadAllBytes()代替FileStream(参考this
  3. Byte Array方法的最后一个参数中传递Length而不是字节数组的InsertUser

        bool a = false;
        String imagefilepath = @fileName;
        ImageData = File.ReadAllBytes(imagefilepath);
    
        a = Users.InsertUser(this.txt_userid.Text.Trim().ToUpper(),
                       this.txt_mobnum.Text.Trim().ToUpper(),
                       this.txt_name.Text,
                       this.role_cmbox.Text.Trim().ToUpper(),
                       this.box_branch.Text.Trim().ToUpper(),
                       this.txt_designation.Text.Trim().ToUpper(),
                       this.txt_repassword.Text.Trim().ToUpper(),
                       this.Imagedata); //Here you need to pass the byte array not length
    
    
        var param = comm.CreateParameter();
        param.ParameterName = "Imagedata";
        param.Value = Imagedata;
        param.SqlDbType = SqlDbType.Image;
        comm.Parameters.Add(param);
    
  4. 希望这有帮助。