我已经创建了将图像上传到SQL Server的代码。
以下是将图像转换为字节的代码:
//Use FileInfo object to get file size.
FileInfo fInfo = new FileInfo(p);
//Open FileStream to read file
FileStream fStream = new FileStream(p, FileMode.Open, FileAccess.Read);
byte[] numBytes = new byte[fStream.Length];
fStream.Read(numBytes, 0, Convert.ToInt32(fStream.Length));
//Use BinaryReader to read file stream into byte array.
//BinaryReader br = new BinaryReader(fStream);
//When you use BinaryReader, you need to supply number of bytes to read from file.
//In this case we want to read entire file. So supplying total number of bytes.
// data = br.ReadBytes((int)numBytes);
return numBytes;
以下是将字节作为值添加到SqlCommand
参数的代码:
objCmd.Parameters.Add("@bill_Image", SqlDbType.Binary).Value = imageData;
objCmd.ExecuteNonQuery();
但我收到错误
字符串或二进制数据将被截断。该声明已被终止
我该如何克服这个问题?
答案 0 :(得分:4)
错误清楚地表明您正在尝试保存比字段定义允许的更多字节。
不确定您为bill_Image
使用的sql类型,但存储图像的相应字段定义为varbinary(MAX)
。
答案 1 :(得分:0)
检查数据库中bill_Image
列的定义。
它应该像
bill_Image varbinary(X)
只需增加X或放置MAX而不是数字(如果图像超过8 000字节)
有关二进制/ varbinary类型here
的信息