public void Eliminarpers(Dpersonas dtp) { Comando.Connection = Conexion.AbrirConexion(); Comando.CommandText = "delete Personas where id_Rut = '" + dtp.get_rut_p() + "'"; Comando.CommandType = CommandType.Text; Comando.ExecuteNonQuery(); Comando.Parameters.Clear(); }
public void Modificarpers(Dpersonas dtp) { Comando.Connection = Conexion.AbrirConexion(); Comando.CommandText = "Update Personas set Nombre_persona = '" + dtp.get_nombre_p() + "', Nacionalidad_P= '" + dtp.get_nacionalidad_p() + "'," + "Direccion = '" + dtp.get_direccion_p() + "', id_comuna = '" + dtp.get_comuna_p() + "', Nivel_educ = '" + dtp.get_nivel_educacional() + "'," + " Ocupacion = '" + dtp.get_ocupacion() + "', Fono ='" + dtp.get_fono_p() + "', id_parentezco = '" + dtp.get_parentezco() + "'," + "Mail = '" + dtp.get_mail() + "', Rut_id = '" + dtp.get_rut_e() + "'where id_Rut = '" + dtp.get_rut_p() + "'"; Comando.CommandType = CommandType.Text; Comando.ExecuteNonQuery(); Comando.Parameters.Clear(); }
public void InsertarPers(Dpersonas dtp) { Comando.Connection = Conexion.AbrirConexion(); Comando.CommandText = "insert into Personas values('" + dtp.get_rut_p() + "','" + dtp.get_nombre_p() + "','" + dtp.get_nacionalidad_p() + "'," + "'" + dtp.get_direccion_p() + "','" + dtp.get_comuna_p() + "','" + dtp.get_nivel_educacional() + "'," + "'" + dtp.get_ocupacion() + "','" + dtp.get_fono_p() + "','" + dtp.get_parentezco() + "'," + "'" + dtp.get_mail() + "','" + dtp.get_rut_e() + "')"; Comando.CommandType = CommandType.Text; Comando.ExecuteNonQuery(); Comando.Parameters.Clear(); }