public void SalvarObs(Geral gr)
 {
     try
     {
         conexao = new MySqlConnection(caminho);
         conexao.Open();
         string       alterar  = "UPDATE geral SET observacao='" + gr.Observacao + "'WHERE cod = '" + gr.Codigo + "'";
         MySqlCommand comandos = new MySqlCommand(alterar, conexao);
         comandos.ExecuteNonQuery();
         conexao.Close();
     }
     catch (Exception ex)
     {
         throw new Exception("Erro de comandos: " + ex.Message);
     }
 }
 public void cadastro(Geral gr)
 {
     try
     {
         conexao = new MySqlConnection(caminho);
         conexao.Open();
         string       inserir  = "INSERT INTO geral(clas, nota, nome, sexo, habilitacao, endereco, telefone, celular, cidade, dtNasc, email, afro, escol, periodo, situacao, vestibulinho, escola, habilitacao2, periodo2, clas2)VALUES('" + gr.Classificacao + "','" + gr.Nota + "','" + gr.Nome + "','" + gr.Sexo + "','" + gr.Habilitacao + "','" + gr.Endereco + "','" + gr.Telefone + "','" + gr.Celular + "','" + gr.Cidade + "','" + gr.DtNascimento + "','" + gr.Email + "','" + gr.Afrodescendente + "','" + gr.Escolaridade + "','" + gr.Periodo + "','" + gr.Situacao + "','" + gr.Vestibulinho + "','" + gr.Escola + "', '" + gr.Habilitacao2 + "','" + gr.Periodo2 + "','" + gr.Classificacao2 + "')";
         MySqlCommand comandos = new MySqlCommand(inserir, conexao);
         comandos.ExecuteNonQuery();
         conexao.Close();
     }
     catch (Exception ex)
     {
         throw new Exception("Erro de comandos: " + ex.Message);
     }
 }
 public void AusenteSegOp(Geral gr)
 {
     try
     {
         conexao = new MySqlConnection(caminho);
         conexao.Open();
         string       alterar  = "UPDATE geral SET ausSegOp='" + gr.Ausente + "', chamada='" + gr.Chamada + "'WHERE cod = '" + gr.Codigo + "'";
         MySqlCommand comandos = new MySqlCommand(alterar, conexao);
         comandos.ExecuteNonQuery();
         conexao.Close();
     }
     catch (Exception ex)
     {
         throw new Exception("Erro de comandos: " + ex.Message);
     }
 }
 public DataTable Observacao(Geral gr)
 {
     try
     {
         conexao = new MySqlConnection(caminho);
         conexao.Open();
         string           receber = "SELECT observacao FROM geral WHERE cod= '" + gr.Codigo + "'";
         MySqlDataAdapter comand  = new MySqlDataAdapter(receber, conexao);
         DataTable        dt      = new System.Data.DataTable();
         comand.Fill(dt);
         conexao.Close();
         return(dt);
     }
     catch (Exception ex)
     {
         throw new Exception("Erro de comandos: " + ex.Message);
     }
 }
 public DataTable Verificar(Geral gr)
 {
     try
     {
         conexao = new MySqlConnection(caminho);
         conexao.Open();
         string           selecionar = "SELECT vestibulinho, escola FROM geral";
         MySqlDataAdapter comandos   = new MySqlDataAdapter(selecionar, conexao);
         DataTable        dt         = new System.Data.DataTable();
         comandos.Fill(dt);
         conexao.Close();
         return(dt);
     }
     catch (Exception ex)
     {
         throw new Exception("Erro de comandos: " + ex.Message);
     }
 }