• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    公众号

C#文件在数据库的存取

原作者: [db:作者] 来自: [db:来源] 收藏 邀请

、、、

 

        /// <summary>
        /// 获取数据库Image字段数据,保存到本地
        /// </summary>
        /// <param name="sender"></param>
        /// <param name="e"></param>
        private void button2_Click(object sender, EventArgs e)
        {
            string constr = "Data Source=IP地址服务器地址;Initial Catalog=SunS;User ID=sa;Password=1321654";
            SqlConnection con = new SqlConnection(constr);
            SqlCommand cmd = new SqlCommand();
            cmd.CommandText = "Select * from FileServer With (NoLock) Where FileName = '" + textBox1.Text + "'";
            cmd.CommandType = CommandType.Text;
            cmd.Connection = con;
            con.Open();
            DataTable dt = new DataTable();
            SqlDataAdapter ad = new SqlDataAdapter(cmd);// cmd.EndExecuteReader();
            ad.Fill(dt);
            con.Close();
            cmd.Dispose();

            byte[] pics1 = (byte[])dt.Rows[0]["CONTENT"];// 的值强制转换;
            writefile(pics1, "D://" + textBox1.Text + "");
        }

        public void writefile(byte[] pics, string filename)
        {
            FileStream fs = new FileStream(filename, FileMode.Append, FileAccess.Write);
            BinaryWriter bw = new BinaryWriter(fs);
            bw.Write(pics, 0, pics.Length);
            bw.Close();
            fs.Close();
        }
        /// <summary>
        /// 将文件转换成byte数组,写入数据库
        /// </summary>
        /// <param name="sender"></param>
        /// <param name="e"></param>
        private void button1_Click(object sender, EventArgs e)
        {
            FileInfo finfo = new FileInfo("D://" + textBox1.Text); //绝对路径
            if (finfo.Exists)
            {
                SqlConnection conn = new SqlConnection( "Data Source=IP地址服务器地址;Initial Catalog=Sun;User ID=sa;Password=1312313");
                SqlCommand InsertCommand = new SqlCommand();
                InsertCommand.Connection = conn;
                InsertCommand.CommandText = " UPDATE  FileServer SET CONTENT =@Content  WHERE [FILENAME] = '" + textBox1.Text + "'";
                InsertCommand.Parameters.Add("@Content", SqlDbType.Image, (int)finfo.Length, "CONTENT"); //注意,此处参数Size为写入的字节数
                //读取文件内容,写入byte数组
                byte[] content = new byte[finfo.Length];
                FileStream stream = finfo.OpenRead();
                stream.Read(content, 0, content.Length);
                stream.Close();
                InsertCommand.Parameters["@Content"].Value = content; //为参数赋值
                try
                {
                    conn.Open();
                    InsertCommand.ExecuteNonQuery();
                }
                finally
                {
                    conn.Close();
                }
            }
        }

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

---

 


鲜花

握手

雷人

路过

鸡蛋
该文章已有0人参与评论

请发表评论

全部评论

专题导读
上一篇:
用C#同时向SQLServer插入多行数据发布时间:2022-07-13
下一篇:
redis——学习之路五(简单的C#使用redis)发布时间:2022-07-13
热门推荐
阅读排行榜

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap