示例#1
0
        private void ChangeButton_Click(object sender, RoutedEventArgs e)
        {
            try
            {
                int    id      = Convert.ToInt32(ID_tb.Text);
                string date    = Date_tb.Text;
                string start   = Start_tb.Text;
                string end     = End_tb.Text;
                int    clas    = Convert.ToInt32(Class_tb.Text);
                int    room    = Convert.ToInt32(Room_tb.Text);
                int    trainer = Convert.ToInt32(Trainer_tb.Text);
                string info    = Info_tb.Text;

                int    newid      = Convert.ToInt32(NewID_tb.Text);
                string newdate    = NewDate_tb.Text;
                string newstart   = NewStart_tb.Text;
                string newend     = NewEnd_tb.Text;
                int    newclas    = Convert.ToInt32(NewClass_tb.Text);
                int    newroom    = Convert.ToInt32(NewRoom_tb.Text);
                int    newtrainer = Convert.ToInt32(NewTrainer_tb.Text);
                string newinfo    = NewInfo_tb.Text;


                string        connectionString = @"Data Source =.\SQLEXPRESS; Initial Catalog = FitnessCenter; Integrated Security = True";
                SqlConnection connection       = new SqlConnection(connectionString);
                connection.Open();

                string     cmdTxt1  = $"UPDATE Schedule SET Date = '{newdate}'  WHERE ID_lesson = '{id}'";
                SqlCommand command1 = new SqlCommand(cmdTxt1, connection);
                string     cmdTxt2  = $"UPDATE Schedule SET StartTime = '{newstart}'  WHERE ID_lesson = '{id}'";
                SqlCommand command2 = new SqlCommand(cmdTxt2, connection);
                string     cmdTxt3  = $"UPDATE Schedule SET EndTime = '{newend}'  WHERE ID_lesson = '{id}'";
                SqlCommand command3 = new SqlCommand(cmdTxt3, connection);
                string     cmdTxt4  = $"UPDATE Schedule SET ID_class = '{newclas}'  WHERE ID_lesson = '{id}'";
                SqlCommand command4 = new SqlCommand(cmdTxt4, connection);
                string     cmdTxt5  = $"UPDATE Schedule SET ID_class = '{newclas}'  WHERE ID_lesson = '{id}'";
                SqlCommand command5 = new SqlCommand(cmdTxt5, connection);
                string     cmdTxt6  = $"UPDATE Schedule SET ID_class = '{newclas}'  WHERE ID_lesson = '{id}'";
                SqlCommand command6 = new SqlCommand(cmdTxt6, connection);
                string     cmdTxt7  = $"UPDATE Schedule SET ID_class = '{newclas}'  WHERE ID_lesson = '{id}'";
                SqlCommand command7 = new SqlCommand(cmdTxt7, connection);


                command1.ExecuteNonQuery(); command2.ExecuteNonQuery(); command3.ExecuteNonQuery(); command4.ExecuteNonQuery();
                command5.ExecuteNonQuery(); command6.ExecuteNonQuery(); command7.ExecuteNonQuery();
                MessageBox.Show("Изменения сохранены успешно!", "Статус действия", MessageBoxButton.OK, MessageBoxImage.Information);


                ID_tb.Clear(); Date_tb.Clear(); Start_tb.Clear(); End_tb.Clear(); Class_tb.Clear(); Room_tb.Clear(); Trainer_tb.Clear(); Info_tb.Clear();
                NewID_tb.Clear(); NewDate_tb.Clear(); NewStart_tb.Clear(); NewEnd_tb.Clear(); NewClass_tb.Clear(); NewRoom_tb.Clear(); NewTrainer_tb.Clear(); NewInfo_tb.Clear();
            }
            catch (Exception ex)
            {
                MessageBox.Show(ex.Message, "ERROR!", MessageBoxButton.OK, MessageBoxImage.Error);
            }
        }
        private void ChangeButton_Click(object sender, RoutedEventArgs e)
        {
            try
            {
                int    id     = Convert.ToInt32(ID_tb.Text);
                int    client = Convert.ToInt32(Client_tb.Text);
                int    abon   = Convert.ToInt32(Abon_tb.Text);
                string start  = Start_tb.Text;
                string end    = End_tb.Text;

                int    newid     = Convert.ToInt32(NewID_tb.Text);
                int    newclient = Convert.ToInt32(NewClient_tb.Text);
                int    newabon   = Convert.ToInt32(NewAbon_tb.Text);
                string newstart  = NewStart_tb.Text;
                string newend    = NewEnd_tb.Text;


                string        connectionString = @"Data Source =.\SQLEXPRESS; Initial Catalog = FitnessCenter; Integrated Security = True";
                SqlConnection connection       = new SqlConnection(connectionString);
                connection.Open();

                string     cmdTxt1  = $"UPDATE AbonnementaSales SET ID_client = '{newclient}'  WHERE ID_card = '{id}'";
                SqlCommand command1 = new SqlCommand(cmdTxt1, connection);
                string     cmdTxt2  = $"UPDATE AbonnementsSales SET ID_abonnement = '{newabon}'  WHERE ID_card = '{id}'";
                SqlCommand command2 = new SqlCommand(cmdTxt2, connection);
                string     cmdTxt3  = $"UPDATE AbonnemensSales SET StartDate = '{newstart}'  WHERE ID_card = '{id}'";
                SqlCommand command3 = new SqlCommand(cmdTxt3, connection);
                string     cmdTxt4  = $"UPDATE AbonnemensSales SET EndDate = '{newend}'  WHERE ID_card = '{id}'";
                SqlCommand command4 = new SqlCommand(cmdTxt4, connection);


                command1.ExecuteNonQuery(); command2.ExecuteNonQuery(); command3.ExecuteNonQuery(); command4.ExecuteNonQuery();
                MessageBox.Show("Изменения сохранены успешно!", "Статус действия", MessageBoxButton.OK, MessageBoxImage.Information);


                ID_tb.Clear(); Client_tb.Clear(); Abon_tb.Clear(); Start_tb.Clear(); End_tb.Clear();
                NewID_tb.Clear(); NewClient_tb.Clear(); NewAbon_tb.Clear(); NewStart_tb.Clear(); NewEnd_tb.Clear();
            }
            catch (Exception ex)
            {
                MessageBox.Show(ex.Message, "ERROR!", MessageBoxButton.OK, MessageBoxImage.Error);
            }
        }