Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试使用 c# 从 firebird 读取图像,并将其保存到文件系统。我可以从表格中读取并保存。但无法查看图像。我在网上尝试了很多代码。但结果是一样的:(有人可以帮我吗?
您如何从 Firebird 中检索代码?如果您正在获取数据并将其转换为 byte[] 尝试:
byte [] blob = row["image"]; // create a file FileStream to write the data FileStream fs = new FileStream("image.jpg", FileMode.Create); fs.Write(blob,0,blob.Length); fs.Close();
上面的代码应该可以解决问题。
PS:我在代码中做了很多假设,但你可以理解。