通过ADO.NET存取文件

ado

时我们需要把一些大的数据对象如图片、可执行文件、视频和文档等数据存入数据库。在MS SQL Server中,这要用到Image数据类型,可以保存多达2G的数据。以下给出一个通过ADO.NET和MS SQL Server实现的小小的例子。

先创建一个测试数据表。
在查询分析器中输入并执行以下语句:
Create table [imgtable](
 [imgid] [int] IDENTITY(1,1) NOT NULL,
 [imgname] [varchar](100) COLLATE Chinese_PRC_CI_AS NULL,
 [imgData] [image] NULL,
 PRIMARY KEY CLUSTERED
 (
 [imgid]
 ) ON [PRIMARY]
) ON [PRIMARY] TEXTIMAGE_ON [PRIMARY]

这要在你所选的数据库中就多了一个名叫imgtable的表。

VS中的代码如下:
using System;
using System.Drawing;
using System.Collections;
using System.ComponentModel;
using System.Windows.Forms;
using System.Data;
using System.Data.SqlClient;
using System.IO;

namespace ADO_Demo
{
 /// <summary>
 /// Form1 的摘要说明。
 /// </summary>
 public class ADO_Demo : System.Windows.Forms.Form
 {
  private System.Windows.Forms.Button button1;
  private System.Windows.Forms.Button button2;
  private System.Windows.Forms.PictureBox pictureBox1;
  private System.Windows.Forms.OpenFileDialog openFileDialog1;
  private System.Windows.Forms.Button button3;
  /// <summary>
  /// 必需的设计器变量。
  /// </summary>
  private System.ComponentModel.Container components = null;

  public ADO_Demo()
  {
   //
   // Windows 窗体设计器支持所必需的
   //
   InitializeComponent();

   //
   // TODO: 在 InitializeComponent 调用后添加任何构造函数代码
   //
  }

  /// <summary>
  /// 清理所有正在使用的资源。
  /// </summary>
  protected override void Dispose( bool disposing )
  {
   if( disposing )
   {
    if (components != null)
    {
     components.Dispose();
    }
   }
   base.Dispose( disposing );
  }

  #region Windows 窗体设计器生成的代码
  /// <summary>
  /// 设计器支持所需的方法 - 不要使用代码编辑器修改
  /// 此方法的内容。
  /// </summary>
  private void InitializeComponent()
  {
   this.button1 = new System.Windows.Forms.Button();
   this.button2 = new System.Windows.Forms.Button();
   this.pictureBox1 = new System.Windows.Forms.PictureBox();
   this.openFileDialog1 = new System.Windows.Forms.OpenFileDialog();
   this.button3 = new System.Windows.Forms.Button();
   this.SuspendLayout();
   //
   // button1
   //
   this.button1.Location = new System.Drawing.Point(368, 48);
   this.button1.Name = "button1";
   this.button1.Size = new System.Drawing.Size(104, 23);
   this.button1.TabIndex = 0;
   this.button1.Text = "保存图片";
   this.button1.Click += new System.EventHandler(this.button1_Click);
   //
   // button2
   //
   this.button2.Location = new System.Drawing.Point(368, 120);
   this.button2.Name = "button2";
   this.button2.Size = new System.Drawing.Size(104, 23);
   this.button2.TabIndex = 1;
   this.button2.Text = "显示图片";
   this.button2.Click += new System.EventHandler(this.button2_Click);
   //
   // pictureBox1
   //
   this.pictureBox1.Location = new System.Drawing.Point(8, 16);
   this.pictureBox1.Name = "pictureBox1";
   this.pictureBox1.Size = new System.Drawing.Size(312, 288);
   this.pictureBox1.TabIndex = 2;
   this.pictureBox1.TabStop = false;
   //
   // openFileDialog1
   //
   this.openFileDialog1.FileOk += new System.ComponentModel.CancelEventHandler(this.openFileDialog1_FileOk);
   //
   // button3
   //
   this.button3.Location = new System.Drawing.Point(368, 200);
   this.button3.Name = "button3";
   this.button3.Size = new System.Drawing.Size(104, 23);
   this.button3.TabIndex = 1;
   this.button3.Text = "读取文件并打开";
   this.button3.Click += new System.EventHandler(this.button3_Click);
   //
   // ADO_Demo
   //
   this.AutoScaleBaseSize = new System.Drawing.Size(6, 14);
   this.ClientSize = new System.Drawing.Size(496, 317);
   this.Controls.Add(this.pictureBox1);
   this.Controls.Add(this.button2);
   this.Controls.Add(this.button1);
   this.Controls.Add(this.button3);
   this.Name = "ADO_Demo";
   this.Text = "ADO_Demo";
   this.ResumeLayout(false);

  }
  #endregion

  /// <summary>
  /// 应用程序的主入口点。
  /// </summary>
  [STAThread]
  static void Main()
  {
   Application.Run(new ADO_Demo());
  }

  /// <summary>
  /// 点击打开文件对话框确定按钮,将文件保存到数据库中
  /// </summary>
  /// <param name="sender"></param>
  /// <param name="e"></param>
  private void openFileDialog1_FileOk(object sender, System.ComponentModel.CancelEventArgs e)
  {
   string filename = this.openFileDialog1.FileName;
   SqlConnection conn = new SqlConnection("server=192.168.2.200;integrated security = sspi;database = northwind");
   SqlCommand cmd = new SqlCommand("insert imgtable values(@imgname,@imgData)",conn);
   SqlParameter pm = new SqlParameter("@imgname",SqlDbType.VarChar,100);
   pm.Value = filename;
   SqlParameter pm1 = new SqlParameter("@imgData",SqlDbType.Image);
   FileStream fs = new FileStream(filename,FileMode.Open);
   int len = (int)fs.Length;
   byte[] fileData = new byte[len];
   fs.Read(fileData,0,len);
   fs.Close();

   pm1.Value = fileData;
   cmd.Parameters.Add(pm);
   cmd.Parameters.Add(pm1);

   conn.Open();
   try
   {
    cmd.ExecuteNonQuery();
   }
   catch(Exception ex)
   {
    MessageBox.Show(ex.Message);
   }

  }

  private void button1_Click(object sender, System.EventArgs e)
  {
   this.openFileDialog1.ShowDialog();
  }

  /// <summary>
  /// 从数据库中读取bitmap图片并显示
  /// </summary>
  /// <param name="sender"></param>
  /// <param name="e"></param>
  private void button2_Click(object sender, System.EventArgs e)
  {
   SqlConnection conn = new SqlConnection("server=192.168.2.200;integrated security = sspi;database = northwind");
   SqlCommand cmd = new SqlCommand("select * from imgtable where imgname like '%bmp%'",conn);
   conn.Open();
   SqlDataReader dr;
   try
   {
    dr = cmd.ExecuteReader();
    dr.Read();
    System.Data.SqlTypes.SqlBinary sb = dr.GetSqlBinary(2);
    //或byte[] imageData = (byte[])dr[2];
    MemoryStream ms = new MemoryStream(sb.Value);//在内存中操作图片数据
    Bitmap bmp = new Bitmap(Bitmap.FromStream(ms));
    this.pictureBox1.Image = bmp;
    dr.Close();
   }
   catch(Exception ex)
   {
    MessageBox.Show(ex.Message);
   }
   finally
   {
    conn.Close();
   }
  }

  /// <summary>
  /// 读取文件并保存到硬盘,然后打开文件
  /// </summary>
  /// <param name="sender"></param>
  /// <param name="e"></param>
  private void button3_Click(object sender, System.EventArgs e)
  {
   SqlConnection conn = new SqlConnection("server=192.168.2.200;integrated security = sspi;database = northwind");
   SqlCommand cmd = new SqlCommand("select * from imgtable where imgname like '%doc'",conn);
   conn.Open();
   SqlDataReader dr;
   try
   {
    dr = cmd.ExecuteReader();
    dr.Read();
    System.Data.SqlTypes.SqlBinary sb = dr.GetSqlBinary(2);
    //或byte[] imageData = (byte[])dr[2];
    //FileStream fs = new FileStream(@"C:\temp.bmp",FileMode.Create);
    string filename = @"C:\" + System.IO.Path.GetFileName(dr.GetString(1));
    FileStream fs = new FileStream(filename,FileMode.Create);
    fs.Write(sb.Value,0,sb.Value.Length);
    fs.Close();
    //this.pictureBox1.Image = Image.FromFile(@"C:\temp.bmp");
    System.Diagnostics.Process.Start(filename);
    dr.Close();
   }
   catch(Exception ex)
   {
    MessageBox.Show(ex.Message);
   }
   finally
   {
    conn.Close();
   }
  }
 }
}

直接把整个文件读取到内存中的数组里对于小文件来说是没问题的,但如果是大文件,特别是大小都超过了物理内存的文件,可能会导致严重的内存问题,需要分段读取,并分段写到数据库。

时间: 2024-10-02 13:03:24

通过ADO.NET存取文件的相关文章

在数据库中存取文件

在数据库中存取文件 http://www.51cto.com  2005-11-24 09:16  作者:  出处:pconline 本文介绍如何利用ADO来操作数据库中的文件. '************************************************* '** '** 使用 ADODB.Stream 保存/读取文件到数据库 '** 引用 Microsoft ActiveX Data Objects 2.5 Library 及以上版本 '** '** ----- 数据库

在DELPHI程序中使用ADO对象存取ODBC数据

作为一个ASP爱好者,笔者经常在ASP页面中使用ADO对象操作ODBC数据库,觉得用ASP创建WEB应用系统确定挺方便的.虽然在编程生涯中,笔者更喜欢Borland系列产品,对微软产品有点排斥,对ASP却是例外.某天,灵机一动,ADO对象是一个标准OLE对象,如果在DELPHI应用程序中能利用ADO操作数据库,应该挺不错.尤其在用DELPHI做网络数据库应用程序时,如果所在的WEB站点是WINNT站点并且支持ASP页面,就可以用ADO对象访问ODBC数据库,而不用把那么大的BDE再上载到站点上去

jsp-关于数据库存取文件的问题

问题描述 关于数据库存取文件的问题 我将图片存在硬盘上,然后将图片的绝对路径存在数据库中,请问用jsp怎么显示出这个图片啊? 因为jsp中使用绝对路径好像没有用啊,貌似是要配置虚拟路径来访问,怎么样把绝对路径转换成虚拟路径啊? 解决方案 protected void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException { String path=r

MONGODB GRIDFS存取文件PHP示例

最近项目需要用到MongoDB存取文件,这里有个简单的PHP示例: public function run(){  //初始化gridfs  $m = new MongoClient(); // 连接  $db = $m->selectDB("excel");  //dump($m);exit;  //$collection = $db->testexcel;  $grid = $db->getGridFS(); //取得gridfs对象    //gridfs有三种

在DEPHI程序中使用ADO对象存取ODBC数据续

3.其它常见对象(与Delphi对应的对象): ADODB.Field:TField ADODB.Parameter: TPara ADODB.Error:EDBEngineError ADODB.Command:无 ADODB.Property:无 下面来看一个应用例子,听别人说总不如自己看实际的例子来体会.在这个例子中,将演示如何利用ADO对象来对一个数据表进行查询.增加记录.修改记录和删除记录操作.具体的用法请参见程序中的注释,如果有点Delphi数据库编程经验,相信不难理解. 在我们的例

C++使用ADO实现存取图片的方法_C 语言

一般在网上查到的资料中向Server2000存储图片代码比较多,从数据库中读取图片并显示也不少,但是把图片从数据库中二进制数据转换为原图片保存在本地,就很少有C++代码了.本文就此问题一步一步地讲一讲解决的方法: 一.使用数据库前的准备 我们使用ADO,是用_ConnectionPtr,_RecordsetPtr来操纵数据库的.还有一个_CommandPtr,本程序没有使用它. 为了使用ADO,需要导入ADO动态链接库.在工程的stdafx.h文件中,添加如下代码: //导入ADO #impor

ADO.NET存取数据库

ado|数据|数据库 以下是本CSDN社区的Michael_Jackson(麦克尔★杰克逊)的贴子(删除了C#部分),放这里我想对大家更有用! 可以使用 ADO.NET DataReader 从数据库中检索只读.只进的数据流.因为每次在内存中始终只有一行,所以使用 DataReader 可提高应用程序的性能并减少系统开销. 当创建 Command 对象的实例后,可调用 Command.ExecuteReader 从数据源中检索行,从而创建一个 DataReader,如以下示例所示. [Visua

ASP中巧用Response存取文件

response ---- 我在用ASP为某单位制作网页时遇到这样一个问题,单位以前的MIS系统中将一些Word文件以字节流的形式保存在数据库中,现在用户要求我用ASP将这些Word文件数据从数据库中取出并在网页中显示出来.开始我自然地想到在服务器上创建临时文件.然后在网页中增加一个指向这个临时文件的链接,但这个方法将大大增加服务器的负担不说,而且在服务上如何保证特定客户端所使用的临时文件不被其它客户端使用的文件覆盖,如何在文件传送给用户后将文件删除,这些问题在实际都难很好解决.那么有没有更好的

在ASP中利用ADO显示Excel文件内容的函数

ado|excel|函数|显示 Function SwitchExcelInfo(xlsFileName)'#################'Power By Tangn.COM'#################Dim xlsStrDim rsDim i,j,kDim ExcelConnDim ExcelFileDim objExcelAppDim objExcelBookDim bgColor xlsStr = ""ExeclFile = Server.MapPath(xlsFi