public void Modify(EntidadEstudiante entidad) { sql = "Update estudiante Set " + "id_estudiante =" + entidad.Id_estudiante + "," + "nombre = '" + entidad.Nombre + "'," + "apellido = '" + entidad.Apellido + "'," + "direccion = '" + entidad.Direccion + "'," + "edad =" + entidad.Edad + "," + "id_materia =" + entidad.Id_materia //+ "ID_SALARIO = " + 1 //entidad.Id_Salario + " where " + "id_estudiante = " + entidad.Id_estudiante; mod.ExecuteSQL(sql); }
public void Insert(EntidadEstudiante entidad) { sql = "Insert into estudiante (" + "id_estudiante," + "nombre," + "apellido," + "direccion," + "edad," + "id_materia" + ") VALUES (" + entidad.Id_estudiante + "," + "'" + entidad.Nombre + "'," + "'" + entidad.Apellido + "'," + "'" + entidad.Direccion + "'," + entidad.Edad + "," + entidad.Id_materia + "" //+ 1 //entidad.Id_Salario + ")"; mod.ExecuteSQL(sql); }