Advertisement
buzzonit

Botao deletar weligton

Oct 2nd, 2016
332
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.67 KB | None | 0 0
  1. essa parte é no dal:
  2.  
  3. {
  4. String caminhobd = "Server=127.0.0.1;DATABASE=alunos_crud_java;UID=root;PASSWORD=";
  5. try
  6. {
  7. MySqlConnection conexao = new MySqlConnection(caminhobd);
  8. conexao.Open();
  9. string deletar = "delete from tb_alunos where id_aluno = "+mo.id;
  10. MySqlCommand command = new MySqlCommand(deletar, conexao);
  11. MySqlDataReader myreader;
  12. myreader = command.ExecuteReader();
  13.  
  14. }
  15. catch (Exception ex)
  16. {
  17. throw new Exception("Erro de Comandos" + ex.Message);
  18. }
  19. return "Dados excluídos com sucesso";
  20.  
  21. }
  22.  
  23. essa parte é no desigr principal botão exclir:
  24.  
  25.  
  26. private void excluir_Click(object sender, EventArgs e)
  27. {
  28. Construtor mo = new Construtor(); //instancionando o construtor
  29. dal da = new dal(); // classe de acesso de banco de dados
  30.  
  31. mo.id = Convert.ToInt32(textcodigo.Text);
  32. mo.nome = textnome.Text;
  33. mo.Endereco = textendereco.Text;
  34. mo.Bairro = textBairro.Text;
  35. mo.cidade = textcidade.Text;
  36. mo.cep = maskecep.Text;
  37. mo.estado = combouf.Text;
  38. mo.cel = maskecelular.Text;
  39. mo.fone = maskefone.Text;
  40. mo.email = textemail.Text;
  41. mo.obs = richTextBox1.Text;
  42. mo.estadocivil = comboestadocivil.Text;
  43. mo.login = textlogin.Text;
  44. mo.password = textsenha.Text;
  45. mo.password = textsenha.Text;
  46. MessageBox.Show(da.deletar(mo));
  47. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement