收藏 分享(赏)

将文件转成流存入数据库.docx

上传人:weiwoduzun 文档编号:4296547 上传时间:2018-12-21 格式:DOCX 页数:2 大小:12.93KB
下载 相关 举报
将文件转成流存入数据库.docx_第1页
第1页 / 共2页
将文件转成流存入数据库.docx_第2页
第2页 / 共2页
亲,该文档总共2页,全部预览完了,如果喜欢就下载吧!
资源描述

1、将文件转成流存入数据库Stream fileDataStream = MyFile.PostedFile.InputStream;/得到文件大小int fileLength = MyFile.PostedFile.ContentLength;/创建数组byte fileData = new bytefileLength;/把文件流填充到数组fileDataStream.Read(fileData,0,fileLength);/得到文件名字string fileTitle = MyFileName.Value;/得到文件类型string fileType = MyFile.PostedFile.

2、ContentType;/构建数据库连接,SQL 语句,创建参数SqlConnection connection = new SqlConnection(“Server=127.0.0.1;uid=sa;pwd=gotomis;Database=shop“);SqlCommand command = new SqlCommand (“INSERT INTO TestFiles (MyFileName,MyFile,FileType)“ +“VALUES (MyFileName,MyFile,FileType)“, connection);SqlParameter paramTitle = ne

3、w SqlParameter (“MyFileName“, SqlDbType.VarChar,35);paramTitle.Value = fileTitle;command.Parameters.Add(paramTitle);SqlParameter paramData = new SqlParameter (“MyFile“, SqlDbType.Image);paramData.Value = fileData;command.Parameters.Add(paramData);SqlParameter paramType = new SqlParameter (“FileType“, SqlDbType.VarChar,25);paramType.Value = fileType;command.Parameters.Add(paramType);/打开连接,执行查询connection.Open();command.ExecuteNonQuery();connection.Close();Message.Text=“你的文件已经成功上载“;MyFileName.Value = “;

展开阅读全文
相关资源
猜你喜欢
相关搜索

当前位置:首页 > 网络科技 > 数据库

本站链接:文库   一言   我酷   合作


客服QQ:2549714901微博号:道客多多官方知乎号:道客多多

经营许可证编号: 粤ICP备2021046453号世界地图

道客多多©版权所有2020-2025营业执照举报