public bool Insertar() { ConexionDB cdb = new ConexionDB(); string sql = "INSERT INTO Estudiantes(Matricula, Nombres, Apellidos, Direccion, Genero, FechaNacimiento, Email, Telefono, Celular) " + "VALUES ('" + Matricula + "','" + Nombres + "','" + Apellidos + "','" + Direccion + "', " + Genero + " ,'" + FechaNacimiento + "','" + Email + "','" + Telefono + "','" + Celular + "')"; return cdb.EjecutarComando(sql); }
public void Modificar(string matricula) { ConexionDB cdb = new ConexionDB(); string sql = "UPDATE Estudiantes SET Nombres = '" + Nombres + "', Apellidos = '" + Apellidos + "', Direccion = '" + Direccion + "', Genero = " + Genero + ", FechaNacimiento = '" + FechaNacimiento + "', Email = '" + Email + "', Telefono = '" + Telefono + "', Celular = '" + Celular + "' WHERE Matricula = " + matricula; cdb.EjecutarComando(sql); }
public bool Eliminar(string matricula) { ConexionDB cdb = new ConexionDB(); string sql = "DELETE Estudiantes WHERE Matricula =" + matricula; return cdb.EjecutarComando(sql); }