C#的实现文本文件存入数据库并取出_C/C++语言_黑客防线网安服务器维护基地--Powered by WWW.RONGSEN.COM.CN

C#的实现文本文件存入数据库并取出

作者:黑客防线网安C/C++教程基地 来源:黑客防线网安C/C++教程基地 浏览次数:0

本篇关键词:数据库取出文件实现
黑客防线网安网讯:    byte[]text= File.ReadAllBytes(this.openFileDialog1.FileName);SqlConnection con = new SqlConnection("data source=.;initial catalog=demo;user id=sa;pwd=");SqlCommand comm = n...
    byte[]text= File.ReadAllBytes(this.openFileDialog1.FileName);
SqlConnection con = new SqlConnection("data source=.;initial catalog=demo;user id=sa;pwd=");
SqlCommand comm = new SqlCommand("Insert Into c (s) Values (@Image)", con);
comm.Parameters.Add(new SqlParameter("@Image", text));
con.Open();
comm.ExecuteNonQuery();
con.Close();
string sql = "select s from c";
comm = new SqlCommand(sql, con);
con.Open();
byte[] s = (byte[])comm.ExecuteScalar();
this.textBox1.Text = System.Text.Encoding.Default.GetString(s, 0, s.Length);
    黑客防线网安服务器维护方案本篇连接:http://www.rongsen.com.cn/show-15306-1.html
网站维护教程更新时间:2012-04-04 22:52:58  【打印此页】  【关闭
我要申请本站N点 | 黑客防线官网 |  
专业服务器维护及网站维护手工安全搭建环境,网站安全加固服务。黑客防线网安服务器维护基地招商进行中!QQ:29769479

footer  footer  footer  footer