使用 Visual C# 将图像添加到 SQL 数据库
Posted
技术标签:
【中文标题】使用 Visual C# 将图像添加到 SQL 数据库【英文标题】:Adding an image to SQL database using Visual C# 【发布时间】:2013-11-18 00:18:43 【问题描述】:我正在开发一个用于图像处理的可视化 C# 程序。我正在尝试使用 Visual C#(Windows 窗体)和 ADO.NET 将图像添加到 sql 数据库中。
我已使用 filestream 方法将图像转换为二进制形式,但图像字节未保存在数据库中。在数据库图像列,它显示 并且没有数据被保存!
我尝试了许多插入方法(有和没有存储过程..等),但在数据库中总是得到相同的东西。
private void button6_Click(object sender, EventArgs e)
try
byte[] image = null;
pictureBox2.ImageLocation = textBox1.Text;
string filepath = textBox1.Text;
FileStream fs = new FileStream(filepath, FileMode.Open, FileAccess.Read);
BinaryReader br = new BinaryReader(fs);
image = br.ReadBytes((int)fs.Length);
string sql = " INSERT INTO ImageTable(Image) VALUES(@Imgg)";
if (con.State != ConnectionState.Open)
con.Open();
SqlCommand cmd = new SqlCommand(sql, con);
cmd.Parameters.Add(new SqlParameter("@Imgg", image));
int x= cmd.ExecuteNonQuery();
con.Close();
MessageBox.Show(x.ToString() + "Image saved");
我没有收到代码错误。图像已转换,输入已在数据库中完成,但在 sql 数据库中显示 。
【问题讨论】:
你为什么不把图像保存到磁盘? 目前还不清楚这在什么方面不起作用。如果数据库中存储了二进制数据,那不就成功了吗?或者你的意思是它存储 literal string “选择的文件流应该被转换为字节数组。
FileStream FS = new FileStream(filepath, FileMode.Open, FileAccess.Read); //create a file stream object associate to user selected file
byte[] img = new byte[FS.Length]; //create a byte array with size of user select file stream length
FS.Read(img, 0, Convert.ToInt32(FS.Length));//read user selected file stream in to byte array
现在这工作正常。数据库仍然显示,但可以使用内存流方法将其转换回图像。
谢谢大家...
【讨论】:
【参考方案2】:试试这样的:
byte[] fileBytes=System.IO.File.ReadAllBytes("path to file");
System.Data.SqlClient.SqlCommand command = new System.Data.SqlClient.SqlCommand("insert into table(blob,filename) values (@blob,@name)");
command.Parameters.AddWithValue("blob", fileBytes);
command.Parameters.AddWithValue("name", "filename");
command.ExecuteNonQuery();
【讨论】:
【参考方案3】:假设您使用VARBINARY
来存储您的图像(which you should be),您可能需要使您的 SqlParameter 类型更强:
所以不是
cmd.Parameters.Add(new SqlParameter("@Imgg", image));
你会使用:
cmd.Parameters.Add("@Imgg", SqlDbType.VarBinary).Value = (SqlBinary)image;
您还可以使用System.IO.File.ReadAllBytes 来缩短将文件路径转换为字节数组的代码。
【讨论】:
【参考方案4】:执行这个存储过程:
create procedure prcInsert
(
@txtEmpNo varchar(6),
@photo image
)
as
begin
insert into Emp values(@txtEmpNo, @photo)
end
表格:
create table Emp
(
[txtEmpNo] [varchar](6) NOT NULL,
imPhoto image
)
【讨论】:
以上是关于使用 Visual C# 将图像添加到 SQL 数据库的主要内容,如果未能解决你的问题,请参考以下文章
如何使用 C# 在 Visual Studio 中放置图像? [关闭]
我似乎无法将记录添加到 Visual Studio 中的数据库
C# Visual Studio - 将 SQL 表数据输出到 Datagridview
在 Visual C# 中获取 Components 类以在面板中放置图像