图片保存到数据库的方法:
public void imgToDB(string sql)
{ //参数sql中要求保存的imge变量名称为@images
//调用方法如:imgToDB("update UserPhoto set Photo=@images where UserNo='" + temp + "'");
FileStream fs = File.OpenRead(t_photo.Text);
byte[] imageb = new byte[fs.Length];
fs.Read(imageb, 0, imageb.Length);
fs.Close();
SqlCommand com3 = new SqlCommand (sql,con);
com3.Parameters.Add("@images",
VB6.0图片保存到数据库和从数据库读取图片并显示
最新推荐文章于 2023-05-11 14:38:22 发布
本文介绍如何使用VB6.0将图片保存到数据库以及从数据库读取并显示图片。提供了两种方法,一种是直接通过SQL查询读取图片数据到PictureBox,另一种是在DataGridView选中行时读取图片并显示。
摘要由CSDN通过智能技术生成