本文介绍了如何将图像插入到SQL Server 2005的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
如何从Windows应用程序将图像插入sql server 2005中
how to insert an image into sql server 2005 from windows applications
推荐答案
using (SqlConnection con = new SqlConnection(myConnectionString))
{
con.Open();
using (SqlCommand cmd = new SqlCommand("INSERT INTO myTable (imageColumnName) VALUES (@IM)", con))
{
MemoryStream ms = new MemoryStream();
myImage.Save(ms,System.Drawing.Imaging.ImageFormat.Jpg);
cmd.Parameters.AddWithValue("@IM", ms.ToArray());
cmd.ExecuteNonQuery();
}
}
这篇关于如何将图像插入到SQL Server 2005的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!