C#WindowsForm窗体设计——如何在窗体中加载数据库当中的存储的图片(以pictureBox控件为例,附结果图)

private void Form1_Load(object sender, EventArgs e)
{
//在窗体的加载事件中举例

        //第一种方法作为了解
        //获取图片的绝对位置(只要知道这个图片在你电脑中的路径即可)
        pictureBox1.Image = Image.FromFile("C:\\Users\\PC\\Desktop\\休闲娱乐\\sd.png");

        //第二种方法: 获取网络上的图片
        //首先先连接数据库,并且打开连接
        SqlConnection conn = new SqlConnection("Server =LAPTOP-VUIH2RN2\\GHZ;database =2020/10/10;Integrated Security= true");
        conn.Open();
        //创建SQL命令来查找出我们存在数据库当中的图片地址
        //这里我们查找Id为1 的甘肃天水花牛苹果;
        //这里查找数据库中储存的图片地址当然也可以去网络上任意复制图片地址;
        string Sql = "Select Image from Product where Id = 1";
        //先判断数据库连接是打开
        if (conn.State == ConnectionState.Open)
        {
            SqlCommand cmd = new SqlCommand(Sql, conn);
            SqlDataReader reader = cmd.ExecuteReader();
            //这里利用while循环来读取SqlDataReader对象查找出来的结果:Read方法
            while (reader.Read())
            {
                //数据库当中的存储的网络图片路径
                  string Images = reader["Image"].ToString();
                //用pictureBox1的ImageLocation属性来设置图片的url路径
                this.pictureBox2.ImageLocation = Images;
            }
            //这里关闭SqlDataReader对象
            reader.Close();
        }
        //这里关闭数据库连接
        conn.Close();
    }

C#WindowsForm窗体设计——如何在窗体中加载数据库当中的存储的图片(以pictureBox控件为例,附结果图)_第1张图片运行结果
C#WindowsForm窗体设计——如何在窗体中加载数据库当中的存储的图片(以pictureBox控件为例,附结果图)_第2张图片数据库当中储存图片地址

你可能感兴趣的:(数据库,sql,visual,studio,c#)