• 软件测试技术
  • 软件测试博客
  • 软件测试视频
  • 开源软件测试技术
  • 软件测试论坛
  • 软件测试沙龙
  • 软件测试资料下载
  • 软件测试杂志
  • 软件测试人才招聘
    暂时没有公告

字号: | 推荐给好友 上一篇 | 下一篇

用OleDbCommand更新SQL Server的二进制文件

发布: 2007-6-21 12:06 | 作者:   | 来源:   | 查看: 17次 | 进入软件测试论坛讨论

领测软件测试网

   
  利用ADO.NET中的OleDbConnection\OleDbCommand 可以方便的对SQL Server中的二进制文件进行更新操作,下面是详细的代码演示
  
  演示环境:
  数据库机器名 :s_test
  登陆名 :sa
  密码 :7890
  数据库名 db_test

  
  下面建立一个表: 
  create table tb_test(id int identity(1,1),photo image ,constraint pk_tb_test primary key(id)) 
  
  一、将硬盘上的文件保存至数据库(C#)
  //----------------------------------------------------------
  //----------------------------------------------------------
  //下面的示例将c:\1.txt文件保存至数据库的tb_test表中
  //----------------------------------------------------------
  //----------------------------------------------------------
  
  using System;
  using System.IO;?
  using System.Data;
  using System.Data.OleDb;
  
  class image_test
  {
  [STAThread]
  static void Main(string[] args)
  {
  try
  {
  //初始化OleDbConnection和OleDbCommand
  OleDbConnection cn = new OleDbConnection("provider=sqloledb;server=s_test;user id=sa;password=7890;initial catalog=db_test");
  OleDbCommand cmd = new OleDbCommand("INSERT tb_test(photo) VALUES(?)",cn);
  
  //打开文件
  FileStream fs = new FileStream("c:\\1.txt", FileMode.Open, FileAccess.Read);
  Byte[] b = new Byte[fs.Length];
  fs.Read(b, 0, b.Length);
  fs.Close();
  
  //打开连接
  OleDbParameter prm = new OleDbParameter("@photo",OleDbType.VarBinary ,b.Length,?
  ParameterDirection.Input, false, 0, 0, null,DataRowVersion.Current, b);
  cmd.Parameters.Add(prm);
  cn.Open();
  
  //执行
  if (cmd.ExecuteNonQuery() == 1)
  Console.WriteLine("OK");
  else
  Console.WriteLine("Fail");?
  cn.Close();
  }
  catch(Exception ex)
  {
  Console.WriteLine(ex.Message );
  }
  }
  }?
  
  二、更新数据库中保存的文件
  //----------------------------------------------------------
  //----------------------------------------------------------
  //下面的示例用将数据库的tb_test表中ID=1的记录的photo更新为c:\1.txt
  //----------------------------------------------------------
  //----------------------------------------------------------
  
  using System;
  using System.IO;?
  using System.Data;
  using System.Data.OleDb;
  
  class image_test
  {
  [STAThread]
  static void Main(string[] args)
  {
  try
  {
  //初始化OleDbConnection和OleDbCommand
  OleDbConnection cn = new OleDbConnection("provider=sqloledb;server=s_test;user id=sa;password=7890;initial catalog=db_test");
  OleDbCommand cmd = new OleDbCommand("UPDATE tb_test SET photo= ? WHERE ID=1",cn);
  
  //打开文件
  FileStream fs = new FileStream("c:\\1.txt", FileMode.Open, FileAccess.Read);
  Byte[] b = new Byte[fs.Length];
  fs.Read(b, 0, b.Length);
  fs.Close();
  
  //打开连接
  OleDbParameter prm = new OleDbParameter("@photo",OleDbType.VarBinary ,b.Length,?
  ParameterDirection.Input, false, 0, 0, null,DataRowVersion.Current, b);
  cmd.Parameters.Add(prm);
  cn.Open();
  
  //执行
  if (cmd.ExecuteNonQuery() == 1)
  Console.WriteLine("OK");
  else
  Console.WriteLine("Fail");?
  cn.Close();
  }
  catch(Exception ex)
  {
  Console.WriteLine(ex.Message );
  }
  }
  }

延伸阅读

文章来源于领测软件测试网 https://www.ltesting.net/


关于领测软件测试网 | 领测软件测试网合作伙伴 | 广告服务 | 投稿指南 | 联系我们 | 网站地图 | 友情链接
版权所有(C) 2003-2010 TestAge(领测软件测试网)|领测国际科技(北京)有限公司|软件测试工程师培训网 All Rights Reserved
北京市海淀区中关村南大街9号北京理工科技大厦1402室 京ICP备10010545号-5
技术支持和业务联系:info@testage.com.cn 电话:010-51297073

软件测试 | 领测国际ISTQBISTQB官网TMMiTMMi认证国际软件测试工程师认证领测软件测试网