- This method is to browse the file object
- private void button1_click (object sender, EventArgs e)
- {
- //user open File Browse
- using (OpenFileDialog Dialog = new OpenFileDialog ())
- {
- //Only one file can be selected
- Dialog. MultiSelect = false;
- //Select a file
- if (dialog. ShowDialog () = = DialogResult.OK)
- {
- Try
- {
- //Take the selected file path to Txtpath
- this.textBox1.Text = dialog. FileName;
- }
- catch (Exception ex)
- {
- //Throw exception
- throw (ex);
- }
- }
- }
- }
- //Off
- private void button3_click (object sender, EventArgs e)
- {
- This . Close ();
- }
- //Convert 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 ();
- }
- //From the database to read the binary stream to write to restore the 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 ();
- }
This is the project to resolve the report rdlc into the database once again read out the Restore method (after testing to any file on the valid [audio files, compressed packages, Word documents, etc.])
Someone here might ask that RDLC is XML, why not just manipulate XML storage? In our project, it is possible to have the RDLC format with pictures in the RDLC, so we simply make a direct binary streaming process.