0

تاپیک جامع نکات در سی شارپ

 
siryahya
siryahya
کاربر طلایی1
تاریخ عضویت : اسفند 1389 
تعداد پست ها : 158652
محل سکونت : ▂▃▄▅▆▇█Tabriz█▇▆▅▄▃▂

پاسخ به:تاپیک جامع نکات در سی شارپ
سه شنبه 22 اردیبهشت 1394  10:14 PM

پاک کردن یک رکورد در هنگام اتصال به دیتابیس با کدنویسی
کد:
    private void button1_Click(object sender, EventArgs e)
    {
       SqlConnection connection = new SqlConnection();
        SqlCommand command = new SqlCommand();
    
        connection.ConnectionString = @"Data Source=.SQLEXPRESS;" + 
           "Initial Catalog=University;Integrated Security=SSPI";
       command.Connection = connection;
       command.CommandText = "DELETE FROM Students WHERE StudentID=@StudentID";
       command.Parameters.AddWithValue("@StudentID", studentIdTextBox.Text);
   
       try
       {
           connection.Open();
           int result = command.ExecuteNonQuery();
           if (result > 0)
               MessageBox.Show("Student was removed!");
           else
               MessageBox.Show("Can't find student.");
       }
       catch (SqlException ex)
       {
           MessageBox.Show("An error has occured.");
       }
       finally
       {
           connection.Close();
       }
   }

ترکی زبان قربون صدقه رفتنه داریم که: گوزلرین گیله‌سین قاداسین آلیم که یعنی درد و بلای مردمک چشات به جونم …!.

تشکرات از این پست
دسترسی سریع به انجمن ها