c# - 从 firebird 读取/写入 blob
我正在尝试使用 C# 从 firebird 读取图像,并将其保存到文件系统。 我可以从表中读取并保存。 但无法查看图像。 我尝试了很多片 网上的代码。但结果是相同的:( 有人可以帮我吗?
I'm trying to read image from firebird with c#, and save it to file system.
I can read from table and save. but image can not be viewed. I tried many piece of
code on net.but result is same :(
Can any one help me please?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您如何从 Firebird 检索代码? 如果您正在获取数据并将其转换为 byte[] ,请尝试:
上面的代码应该可以解决问题。
PS:我在代码中做了很多假设,但是你可以明白这个想法。
How are you retrieving the code form Firebird? If you are getting the data and casting it to a byte[] try:
The above code should do the trick.
PS: I have made lots of assumption in the code, but you can get the idea.