程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> C語言 >> 關於C語言 >> C#將文件保存到數據庫中或者從數據庫中讀取文件(1)

C#將文件保存到數據庫中或者從數據庫中讀取文件(1)

編輯:關於C語言

編程中我們常常會遇到“將文件保存到數據庫中”這樣一個問題,雖然這已不是什麼高難度的問題,但對於一些剛剛開始編程的朋友來說可能是有一點困難。其實,方法非常的簡單,只是可能由於這些朋友剛剛開始編程不久,一時沒有找到方法而已。

下面介紹一下使用C#來完成此項任務。

首先,介紹一下保存文件到數據庫中。

將文件保存到數據庫中,實際上是將文件轉換成二進制流後,將二進制流保存到數據庫相應的字段中。在SQL Server中該字段的數據類型是Image,在Access中該字段的數據類型是OLE對象。

Code

[copy to clipboard]

CODE:

//保存文件到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();

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved