【求助】如何往DB2数据库中存储二进制流文件
--------------------编程问答-------------------- Entity entity= new Entity(); //实体Byte[] fileBytes = null;
HttpPostedFile myPhoto = photo.PostedFile; //获取文件(上传控件)
fileLength = myPhoto.ContentLength; //文件长度
fileBytes = new Byte[fileLength];
myPhoto.InputStream.Read(fileBytes, 0, fileLength);
entity.PHOTO = fileBytes; //相片字段Photo --------------------编程问答-------------------- 非常感谢,已经解决了,是要用动态存储过程进行存储
补充:.NET技术 , ASP.NET