• C/S 图片操作


    从数据库中读取:
    方法一:
    SqlCommand Cmd = new SqlCommand("SELECT * FROM student", MyCn);
    SqlDataAdapter da = new SqlDataAdapter(Cmd);
    DataSet ds = new DataSet();
    da.Fill(ds, "student");
    Byte[] byteBLOBData =  new Byte[0];
    byteBLOBData = (Byte[])(ds.Tables["student"].Rows[index]["ZP"]);
    MemoryStream stmBLOBData = new MemoryStream(byteBLOBData);
    this.pictureBox2.Image= Image.FromStream(stmBLOBData);

    方法二:
    OleDbDataAdapter MyDa=new OleDbDataAdapter("select ZP from picture",MyCn);
       DataSet ds=new DataSet();
       MyDa.Fill(ds,"picture");
    foreach(DataRow rFirst in ds.Tables["picture"].Rows)
        {
         bData=(byte[])rFirst["ZP"];
        }

    MemoryStream stream=new MemoryStream(bData,true);
    //MemoryStream stream=new MemoryStream(bData);
        // Create a bitmap from the stream
        Bitmap bmp = new Bitmap(stream);

        try
        {
         //Showing
         this.pictureBox1.Image=bmp;
         //this.pictureBox1.Image=Image.FromStream(stream);
        }
        catch{};
        // Close the stream
        stream.Close();

    =========================================================================
    插入数据库中:
    SqlCommand MyCmd=new SqlCommand("INSERT INTO student(XH,ZP) VALUES(@XH,@ZP)",MyCn);

       //Read jpg into file stream, and from there into Byte array.
       FileStream fsBLOBFile =  new FileStream(strBLOBFilePath,FileMode.Open, FileAccess.Read);
       Byte[] bytBLOBData = new Byte[fsBLOBFile.Length];
       fsBLOBFile.Read(bytBLOBData, 0, bytBLOBData.Length);
       fsBLOBFile.Close();

       MyCmd.Parameters.Add("@XH",this.txtBox_XH.Text.Trim());

       //Create parameter for insert command and add to SqlCommand object.
       SqlParameter prm = new  SqlParameter("@ZP", SqlDbType.VarBinary, bytBLOBData.Length, ParameterDirection.Input, false,0, 0, null, DataRowVersion.Current, bytBLOBData);
       MyCmd.Parameters.Add(prm);

       
       try
       {
        MyCn.Open();
        MyCmd.ExecuteNonQuery();
        MessageBox.Show("保存到数据库成功!","提示");
       }
       catch(Exception ex)
       {
        MessageBox.Show(ex.Message);
       }
       MyCn.Close();

  • 相关阅读:
    log4net 开启内部调试
    负载均衡的基本算法
    MapReduce算法形式六:只有Map独自作战
    MapReduce算法形式五:TOP—N
    MapReduce算法形式四:mapjoin
    MapReduce算法形式三:cleanup
    MapReduce算法形式二:去重(HashSet)
    MapReduce算法形式二:去重(shuffle)
    MapReduce算法形式一:WordCount
    理解yarn平台,理解万岁,肤浅理解也万岁~
  • 原文地址:https://www.cnblogs.com/RobotTech/p/532949.html
Copyright © 2020-2023  润新知