当前位置:编程学习 > C#/ASP.NET >>

【求助】如何往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
CopyRight © 2022 站长资源库 编程知识问答 zzzyk.com All Rights Reserved
部分文章来自网络,