C# de böyle bir çözüm bulunmuş ama bir türlü uyarlayamadım.
OleDbCommand OleKomut = new OleDbCommand(@"UPDATE icerik SET notlar=@notlar , notlartxt=@notlartxt WHERE id=@id", Baglanti);
OleKomut.Parameters.AddWithValue("@notlar",rtbAramaIcerik.Rtf);
OleKomut.Parameters.AddWithValue("@notlartxt", rtbAramaIcerik.Text);
OleKomut.Parameters.AddWithValue("@id", dgwAramaSonuc.CurrentRow.Cells["id"].Value.ToString());
int eklenenKayitSayisi = OleKomut.ExecuteNonQuery();
