C#将图像作为blob保存到MySql数据库
问题:C#将图像作为blob保存到MySql数据库 由于某种原因,当我尝试为用户更新图像时,我的代码失败了。图像未正确保存。例如,一个 38 kib 的图像在数据库中保存为 13 个字节。 这是我的代码: public void UploadImage(Image img) { OpenConnection(); MySqlCommand command = new MySqlCommand(""
·
问题:C#将图像作为blob保存到MySql数据库
由于某种原因,当我尝试为用户更新图像时,我的代码失败了。图像未正确保存。例如,一个 38 kib 的图像在数据库中保存为 13 个字节。
这是我的代码:
public void UploadImage(Image img)
{
OpenConnection();
MySqlCommand command = new MySqlCommand("", conn);
command.CommandText = "UPDATE User SET UserImage = '@UserImage' WHERE UserID = '" + UserID.globalUserID + "';";
byte[] data = imageToByte(img);
MySqlParameter blob = new MySqlParameter("@UserImage", MySqlDbType.Blob, data.Length);
blob.Value = data;
command.Parameters.Add(blob);
command.ExecuteNonQuery();
CloseConnection();
}
public byte[] imageToByte(Image img)
{
using (var ms = new MemoryStream())
{
img.Save(ms, System.Drawing.Imaging.ImageFormat.Jpeg);
return ms.ToArray();
}
}
OpenConnection 和 closeconnection 就是 conn.Open() 和 conn.Close()。
然而,转换并没有失败:
但是在数据库中我看到了这个:
有谁知道这里发生了什么?
解答
替换此代码:
OpenConnection();
MySqlCommand command = new MySqlCommand("", conn);
command.CommandText = "UPDATE User SET UserImage = '@UserImage' WHERE UserID = '" + UserID.globalUserID + "';";
byte[] data = imageToByte(img);
MySqlParameter blob = new MySqlParameter("@UserImage", MySqlDbType.Blob, data.Length);
blob.Value = data;
command.Parameters.Add(blob);
command.ExecuteNonQuery();
CloseConnection();
和
var userImage = imageToByte(img);
OpenConnection();
var command = new MySqlCommand("", conn);
command.CommandText = "UPDATE User SET UserImage = @userImage WHERE UserID = @userId;";
var paramUserImage = new MySqlParameter("@userImage", MySqlDbType.Blob, userImage.Length);
var paramUserId = new MySqlParameter("@userId", MySqlDbType.VarChar, 256);
paramUserImage.Value = userImage;
paramUserId.Value = UserID.globalUserID;
command.Parameters.Add(paramUserImage);
command.Parameters.Add(paramUserId);
command.ExecuteNonQuery();
CloseConnection();
您正在发送'@UserImage'
这是一个 10 字节长的字符串,删除引号,它应该可以工作。
上面的代码还为你的两个变量使用参数,你应该总是这样做。
无论哪种方式,希望这可以帮助你。
更多推荐
已为社区贡献23584条内容
所有评论(0)