private void DGVEmpleados_Load(object sender, EventArgs e) { coneccion conec = new coneccion(); DataSet ds = conec.MostrarData(" select e.codigo_emp, e.nombre, e.apellido, c.nombre, d.nombre from empleado e, cargo c, departamento d where e.fkcod_cargo=c.codigo and e.fkcod_depart=d.codigo"); DGVempleado.DataSource = ds.Tables[0]; }
private void button5_Click(object sender, EventArgs e) { coneccion oper = new coneccion(); DataSet ds = oper.MostrarData(" select codigo_emp, nombre, apellido from empleado "); ds.WriteXml("c:\\SQLite\\SQLite\\cnxpruva.xml"); reportes f = new reportes("CrystalReport2.rpt"); f.Show(); }
private void btconsulta_Click(object sender, EventArgs e) { coneccion oper = new coneccion(); DataSet ds = new DataSet(); ds = oper.MostrarData("SELECT nombre, apellido, codigo_emp FROM empleado WHERE codigo_emp='" + tbcodigo.Text.ToString() + "'"); foreach (DataRow fila in ds.Tables[0].Rows) { tbcodigo.Text = fila["codigo_emp"].ToString(); tbnombre.Text = fila["nombre"].ToString(); tbapellido.Text = fila["apellido"].ToString(); } }
private void button4_Click(object sender, EventArgs e) { coneccion oper = new coneccion(); oper.insertar(" UPDATE empleado SET nombre='" + tbnombre.Text.ToString() + "', apellido='" + tbapellido.Text.ToString() + "' WHERE codigo_emp='" + tbcodigo.Text + "'"); }
private void btcrear_Click(object sender, EventArgs e) { coneccion oper = new coneccion(); oper.insertar(" INSERT INTO empleado (nombre, apellido, sexo, fecha_nacimiento, fcha_ingreso, fkcod_cargo, fkcod_depart )VALUES('" + tbnombre.Text.ToString() + "','" + tbapellido.Text.ToString() + "','" + cbsexo.Text.ToString() + "','" + dtpfchnc.Text.ToString() + "','" + dtpingreso.Text.ToString() + "','" + tbcargo.Text.ToString() + "','" + tbdepart.Text.ToString() + "')"); }