C#+mysql Picture Data storage

Source: Internet
Author: User

Turn files into binary streams into the database
private void Button2_Click (object sender, EventArgs e)
{
FileStream fs = new FileStream (TextBox1.Text, FileMode.Open);
BinaryReader br = new BinaryReader (FS);
byte[] Bydata = br. Readbytes ((int) fs. Length);
Fs. Close ();
String conn = "server=.; Database=testdb; Uid=sa; Pwd=sa ";
SqlConnection myconn = new SqlConnection (conn);
MyConn. Open ();
String str = "INSERT into pro_table (pro_name,pro_file) VALUES (' Test file ', @file)";
SqlCommand Mycomm = new SqlCommand (str, myconn);
Mycomm. Parameters.Add ("@file", Sqldbtype.binary, Bydata.length);
Mycomm. parameters["@file"]. Value = Bydata;
Mycomm. ExecuteNonQuery ();
MyConn. Close ();
}

Reads the binary stream read-write from the database and restores it to a file
private void Button4_Click (object sender, EventArgs e)
{
String conn = "server=.; Database=testdb; Uid=sa; Pwd=sa ";
String str = "Select Pro_file from pro_table where pro_name= ' test file '";
SqlConnection myconn = new SqlConnection (conn);
SqlDataAdapter SDA = new SqlDataAdapter (STR, conn);
DataSet myds = new DataSet ();
MyConn. Open ();
Sda. Fill (myds);
MyConn. Close ();
Byte[] Files = (byte[]) myds. Tables[0]. rows[0]["Pro_file"];
BinaryWriter bw = new BinaryWriter (File.Open ("D:\\2.RDLC", FileMode.OpenOrCreate));
Bw. Write (Files);
Bw. Close ();
}

C#+mysql Picture Data storage

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.