转:C#开发之将图片存入数据库

将图片存入数据库,首先要在数据库中建立一张表,将存储图片的字段类型设为Image类型,用FileStream类、BinaryReader把图片读成字节的形式,赋给一个字节数组,

然后用ADO.SqlCommand对象的ExecuteNonQuery方法来把数据保持到数据库中。

下面我给大家一些实现此功能的主要代码,希望对大家有所帮助!

 

  Private void button1_Click(object sender.EventArgs e)   {    openFileDialog1.Filter=”*jpg|*.JPG|*.GIF|*.gif|*.BMP|*.bmp”;    if(openFileDialog1.ShowDialog()=+DialogResult.OK)   {string fullpath = openFileDialog1.FileName;//文件路径   FileStream fs = new FileStream(fullpath, FileMode.Open);   Byte[] imagebytes = new byte[fs.Length];   BinaryReader br =new BinaryReader(s);   Imagebytes = br.ReadBytes(Convert.ToInt 32(fs.Length));   //打开数所   SqlConnection con = new SqlConnection(“server=(local);uid =sa; pwd=;database=dbname”);   con.Open();   SqlCommand com=new SqlCommand (“insert into tb values(@ImageList)”,con);    com.parameters.Add(“ImageList”,SqlDbType.Image);    com.Parameters[“ImageList”].Vale=imagebytes;    com.ExecuteNonQuery();   con.close();   }   }

你可能感兴趣的:(数据库,C#,database,insert,byte,imagelist)