我试图从数据库中读取* .rtf文件,但我不能。
以下是我用于在richTextBox
中添加数据库中的文本的代码SqlConnection con = new SqlConnection(@"Data Source=MARIA-PC;Initial Catalog=Account;Integrated Security=True");
con.Open();
SqlCommand cmd = new SqlCommand("INSERT INTO [dbo].[FILE] (File_name,The_text) VALUES (@File_name,@The_text)", con);
cmd.Parameters.Add("@File_name", textBox1.Text);
cmd.Parameters.AddWithValue("@The_text", richTextBox1.Rtf);
cmd.ExecuteNonQuery();
con.Close();
我创建的表格 Click here
我尝试了很多我在互联网上找到的解决方案,但没有一个好的。
我想要做的是在空白的richTextBox中显示保存在数据库中的文本。