国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁(yè) > 學(xué)院 > 開(kāi)發(fā)設(shè)計(jì) > 正文

把RichTextBox中的文本保存到Sql Server中(C#)

2019-11-18 16:49:56
字體:
來(lái)源:轉(zhuǎn)載
供稿:網(wǎng)友

PRivate void save()
  {
   FileStream stream = null;  
   SqlConnection conn = null;  
   SqlCommand cmd = null;  
   try  
   {   
    richTextBox1.SaveFile( "temp.rtf" );   
    stream = new FileStream("temp.rtf", FileMode.Open, Fileaccess.Read);  
    int size = Convert.ToInt32(stream.Length);   
    Byte[] rtf = new Byte[size];   
    stream.Read(rtf, 0, size);
    conn = new SqlConnection("Database=Northwind;Integrated Security=true;");   
    conn.Open();   
    cmd = new SqlCommand("UPDATE Employees SET Photo=@Photo WHERE EmployeeID=1", conn);
    SqlParameter paramRTF =      new SqlParameter("@Photo",     SqlDbType.Image,     rtf.Length,     ParameterDirection.Input,     false,     0,0,null,     DataRowVersion.Current,     rtf);   
    cmd.Parameters.Add(paramRTF);        int rowsUpdated = Convert.ToInt32(cmd.ExecuteNonQuery());      
    MessageBox.Show(String.Format("{0} rows updated", rowsUpdated)); 
   }  
   catch(Exception ex)   {    MessageBox.Show(ex.Message);   } 
   finally  
   {   
    if ( stream != null ) stream.Close();   
    if (cmd != null ) cmd.Parameters.Clear();   
    if (conn != null) conn.Close();  
   } 
  }

  private void Get()
  {
   richTextBox1.Clear();

   SqlConnection cn     = null;   SqlCommand cmd       = null;  
   SqlDataReader reader = null;  
   try  
   {   
    cn = new SqlConnection("Database=Northwind;Integrated Security=true;");   
    cn.Open();    cmd = new SqlCommand("SELECT Photo FROM Employees WHERE EmployeeID=1", cn);   
    reader = cmd.ExecuteReader();    reader.Read();   
    if (reader.HasRows)   
    {   
     if (!reader.IsDBNull(0))   
     {     
      Byte[] rtf = new Byte[Convert.ToInt32((reader.GetBytes(0, 0, null, 0, Int32.MaxValue)))];     
      long bytesReceived = reader.GetBytes(0, 0, rtf, 0, rtf.Length);      
      ASCIIEncoding encoding = new ASCIIEncoding();     
      richTextBox1.Rtf = encoding.GetString(rtf, 0, Convert.ToInt32(bytesReceived));    
     }   
    } 
   }  
   catch(Exception ex)   {    MessageBox.Show(ex.Message);   }  
   finally  
   {   
    if (reader != null ) reader.Close();  
    if (cn != null ) cn.Close();  
   }

  }


發(fā)表評(píng)論 共有條評(píng)論
用戶(hù)名: 密碼:
驗(yàn)證碼: 匿名發(fā)表
主站蜘蛛池模板: 吉隆县| 饶河县| 清丰县| 昌邑市| 高陵县| 普安县| 临朐县| 聂拉木县| 礼泉县| 柯坪县| 泗洪县| 饶阳县| 南靖县| 渝北区| 谢通门县| 泾源县| 桑日县| 天全县| 长宁县| 太康县| 六枝特区| 巴东县| 蛟河市| 伊吾县| 九台市| 林州市| 丰县| 基隆市| 双城市| 新龙县| 沙坪坝区| 武安市| 右玉县| 河曲县| 金堂县| 布尔津县| 南平市| 阜平县| 龙里县| 萨迦县| 海丰县|