Exemplo n.º 1
0
 private void btnactualizar_Click(object sender, EventArgs e)
 {
     try
     {
         operacion oper = new operacion();
         oper.ConsultaSinResultado(" UPDATE cargo SET departamento='" + cmbdepartamento.Text.ToString() + "' WHERE id= '" + txtidcargo.Text + "' ");
         operacion display = new operacion();
     }
     catch (Exception ex)
     {
         MessageBox.Show(ex.Message);
     }
     finally
     {
         MessageBox.Show("Se actualizo correctamente");
     }
 }
Exemplo n.º 2
0
        private void button3_Click(object sender, EventArgs e)
        {
            try
            {
                operacion oper = new operacion();
                oper.ConsultaSinResultado(" DELETE FROM empleado WHERE id='" + txtid.Text + "' ");
            }
            catch (Exception ex)

            {
                MessageBox.Show(ex.Message);
            }
            finally
            {
                MessageBox.Show("El contenido a sido eliminado");
            }
        }
Exemplo n.º 3
0
 private void button1_Click_1(object sender, EventArgs e)
 {
     //Botón de actualizar
     try
     {
         operacion oper = new operacion();
         oper.ConsultaSinResultado(" UPDATE empleado SET nombre='" + txtnombre.Text.ToString() + "', apellido='" + txtapellido.Text.ToString() + "', cedula= '" + txtcedula.Text.ToString() + "', telefono='" + txttelefono.Text.ToString() + "' WHERE id= '" + txtid.Text + "' ");
         operacion dep = new operacion();
         dep.ConsultaSinResultado(" UPDATE cargo SET departamento='" + txtdepartamento.Text.ToString() + "' WHERE id= '" + txtid.Text + "' ");
     }
     catch (Exception ex)
     {
         MessageBox.Show(ex.Message);
     }
     finally
     {
         MessageBox.Show("Se ha actualizado correctamente");
     }
 }
Exemplo n.º 4
0
        private void button1_Click(object sender, EventArgs e)
        {
            //Botón de crear
            try
            {
                operacion oper = new operacion();
                oper.ConsultaSinResultado(" INSERT INTO empleado (nombre, apellido, telefono, cedula) VALUES ('" + txtnombre.Text.ToString() + "','" + txtapellido.Text.ToString() + "','" + txttelefono.Text.ToString() + "','" + txtcedula.Text.ToString() + "')");
                operacion dep = new operacion();
                dep.ConsultaSinResultado(" INSERT INTO cargo (departamento) VALUES ('" + txtdepartamento.Text.ToString() + "')");
            }
            catch (Exception ex)

            {
                MessageBox.Show(ex.Message);
            }

            finally
            {
                MessageBox.Show(" La información fue insertada correctamente ");
            }
        }