Merhabalar aşağıdaki sorgu için başlıktaki hatayı alıyorum.
bir bakar mısınız
` baglanti.Open();
try
{
Class1 cls = new Class1();
cls.Tarih = Convert.ToDateTime(monthCalendar1.SelectionStart.ToShortDateString()); ;
cls.Baslik = textBox1.Text;
cls.Not = richTextBox1.Text;
cls.Saat = Convert.ToInt32(numeric_saat.Value);
cls.Dk = Convert.ToInt32(numeric_dk.Value);
int idd = 8;
DateTime tarih_ =Convert.ToDateTime(cls.Tarih.ToShortDateString());
string baslik_ = cls.Baslik;
string not_ = cls.Not;
int saat_ = cls.Saat;
int dakika_ = cls.Dk;
label5.Text = Convert.ToString(tarih_) + "----" + baslik_ + "----" + not_ + "----" + Convert.ToString(saat_) +
OleDbCommand not_ekle = new OleDbCommand("insert into ajanda_tbl(ID,baslik, tarih, not, saat, dakika) VALUES(@id_,@bas, @tar, @not, @saa, @dak)", baglanti);
not_ekle.Parameters.AddWithValue("@id_", Convert.ToInt32(idd));
not_ekle.Parameters.AddWithValue("@bas", baslik_);
not_ekle.Parameters.AddWithValue("@tar", Convert.ToDateTime(tarih_));
not_ekle.Parameters.AddWithValue("@not", not_);
not_ekle.Parameters.AddWithValue("@saa", Convert.ToInt32(saat_));
not_ekle.Parameters.AddWithValue("@dak", Convert.ToInt32(dakika_));
not_ekle.ExecuteNonQuery();
baglanti.Close();
MessageBox.Show("Yeni Notunuz Başarıyla Kaydedildi", "Yeni Not+", MessageBoxButtons.OK, MessageBoxIcon.Information);
}
catch (Exception hata)
{
MessageBox.Show(hata.Message);
baglanti.Close();
}`