C#将文件保存到数据库中或者从数据库中读取文件_第1页
C#将文件保存到数据库中或者从数据库中读取文件_第2页
C#将文件保存到数据库中或者从数据库中读取文件_第3页
全文预览已结束

下载本文档

版权说明:本文档由用户提供并上传,收益归属内容提供方,若内容存在侵权,请进行举报或认领

文档简介

首先 介绍一下保存文件到数据库中 将文件保存到数据库中 实际上是将文件转换成二进制流后 将二进制流保存到数据库相 应的字段中 在 SQL Server 中该字段的数据类型是 Image 在 access 中该字段的数据类型 是 OLE 对象 保存文件到 SQL Server 数据库中 FileInfo fi new FileInfo fileName FileStream fs fi OpenRead byte bytes new byte fs Length fs Read bytes 0 Convert ToInt32 fs Length SqlCommand cm new SqlCommand cm Connection cn cm CommandType CommandType Text if cn State 0 cn Open cm CommandText insert into tableName fieldName values file SqlParameter spFile new SqlParameter file SqlDbType Image spFile Value bytes cm Parameters Add spFile cm ExecuteNonQuery 保存文件到 Access 数据库中 FileInfo fi new FileInfo fileName FileStream fs fi OpenRead byte bytes new byte fs Length fs Read bytes 0 Convert ToInt32 fs Length OleDbCommand cm new OleDbCommand cm Connection cn cm CommandType CommandType Text if cn State 0 cn Open cm CommandText insert into tableName fieldName values file OleDbParameter spFile new OleDbParameter file OleDbType Binary spFile Value bytes cm Parameters Add spFile cm ExecuteNonQuery 保存客户端文件到数据库 sql update t mail set attachfilename attachfilename attachfile attachfile where mailid mailid myCommand new SqlCommand sql new SqlConnection ConnStr string path fl name PostedFile FileName string filename path Substring path LastIndexOf 1 path Length path LastIndexOf 1 myCommand Parameters Add attachfilename SqlDbType VarChar myCommand Parameters attachfilename Value filename myCommand Parameters Add attachfile SqlDbType Image Stream fileStream fl name PostedFile InputStream int intFileSize fl name PostedFile ContentLength byte fileContent new byte intFileSize int intStatus fileStream Read fileContent 0 intFileSize 文件读取到 fileContent 数组 中 myCommand Parameters attachfile Value byte fileContent fileStream Close myCommand Connection Open myCommand ExecuteNonQuery myCommand Connection Close 代码中的 fileName 是文件的完整名称 tableName 是要操作的表名称 fieldName 是要保存 文件的字段名称 两段代码实际上是一样的 只是操作的数据库不同 使用的对象不同而已 接着 在说说将文件从数据库中读取出来 只介绍从 SQL Server 中读取 SqlDataReader dr null SqlConnection objCn new SqlConnection objCn ConnectionString Data Source local User ID sa PassWord Initial Catalog Test SqlCommand cm new SqlCommand cm Connection cn cm CommandType CommandType Text cm CommandText select fieldName from tableName where ID 1 dr cm ExecuteReader byte File null if dr Read File byte dr 0 FileStream fs FileInfo fi new System IO FileInfo fileName fs fi OpenWrite fs Write File 0 File Length fs Close 上面的代码是将保存在数据库中的文件读取出来并保存文 fileName 指定的文件中 在使用上面的代码时 别忘了添加 System Data SqlClient 和 System IO 引用 修改 将读文件的下面部分的代码 FileStream fs FileInfo fi new System IO FileInfo fileName fs fi OpenWrite fs Write File 0 File Length fs Close 修改为 FileStream fs new FileStream fileName FileMode CreateNew BinaryWriter

温馨提示

  • 1. 本站所有资源如无特殊说明,都需要本地电脑安装OFFICE2007和PDF阅读器。图纸软件为CAD,CAXA,PROE,UG,SolidWorks等.压缩文件请下载最新的WinRAR软件解压。
  • 2. 本站的文档不包含任何第三方提供的附件图纸等,如果需要附件,请联系上传者。文件的所有权益归上传用户所有。
  • 3. 本站RAR压缩包中若带图纸,网页内容里面会有图纸预览,若没有图纸预览就没有图纸。
  • 4. 未经权益所有人同意不得将文件中的内容挪作商业或盈利用途。
  • 5. 人人文库网仅提供信息存储空间,仅对用户上传内容的表现方式做保护处理,对用户上传分享的文档内容本身不做任何修改或编辑,并不能对任何下载内容负责。
  • 6. 下载文件中如有侵权或不适当内容,请与我们联系,我们立即纠正。
  • 7. 本站不保证下载资源的准确性、安全性和完整性, 同时也不承担用户因使用这些下载资源对自己和他人造成任何形式的伤害或损失。

评论

0/150

提交评论