本文介绍了我需要在没有参数的情况下将文件或字节保存在数据库中的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

早上好,我已经在网上搜索了很多东西,但是还没有找到如何将文件(由用户提供)保存到SQL数据库中的方法.我需要在没有参数的情况下执行此操作,因为我们正在使用ASP.NET,因此它会使我们的应用程序减慢太多.

有人知道我该怎么做吗,还是有人链接到我可以得到我所需要的东西.

预先感谢,
丹尼尔·戈麦斯
波哥大哥伦比亚

Good Morning fellows, I''ve searched all over the web and I haven''t found how to save a file (given by the user) into a SQL database; I need to do it without paramaters because we''re working on ASP.NET so it will slow our application too much.

Does anyone know how I can do that or does anybody have a link where I can get what I need.

Thanks in advance,
Daniel Gomez
Bogota Colombia

推荐答案

insert into blob_table(my_image) values(0xC9CBBBCCCEB9C8CABCCCCEB9C9CBBB);



0xC9CBBBCCCEB9C8CABCCCCEB9C9CBBB -它被图像转换为十六进制形式.



0xC9CBBBCCCEB9C8CABCCCCEB9C9CBBB - it is image converted to its hexadecimal form.




这篇关于我需要在没有参数的情况下将文件或字节保存在数据库中的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

11-02 18:37