private void Modifier_Click(object sender, EventArgs e) { if (Validation.VerificationCode(code.Text) && Validation.VerificationTexte(nom.Text) && Validation.VerificationTexte(prenom.Text) && Validation.VerificationEmail(email.Text) && Validation.VerificationTelephone(telephone.Text) && Validation.VerificationTexte(adresse.Text)) { String x = "UPDATE Client SET nomc ='" + nom.Text + "', prenomc = '" + prenom.Text + "', emailc = '" + email.Text + "', telephonec = " + int.Parse(telephone.Text) + ", adressec = '" + adresse.Text + "' where codec=" + int.Parse(code.Text); MySqlCommand commandDB = new MySqlCommand(x, databaseConnection); try { databaseConnection.Open(); MySqlDataReader myReader = commandDB.ExecuteReader(); MessageBox.Show("Le Client a été modifié avec succès ! "); } catch (Exception excep) { MessageBox.Show("Erreurr " + excep.Message); } } }
private void ajouter_Click(object sender, EventArgs e) { if (Validation.VerificationTexte(nom.Text) && Validation.VerificationTexte(prenom.Text) && Validation.VerificationEmail(email.Text) && Validation.VerificationTelephone(telephone.Text) && Validation.VerificationTexte(adresse.Text)) { MySqlCommand commandDB = new MySqlCommand("insert into Client (nomc, prenomc, emailc, telephonec, adressec) values ( '" + nom.Text + "','" + prenom.Text + "','" + email.Text + "','" + telephone.Text + "','" + adresse.Text + "')", databaseConnection); try { databaseConnection.Open(); MySqlDataReader myReader = commandDB.ExecuteReader(); MessageBox.Show("Le Client a été ajouté avec succès ! "); } catch (Exception excep) { MessageBox.Show("Erreur Vérifier Votre code SQL " + excep.Message); } } }