Skip to content

Commit

Permalink
small refactors
Browse files Browse the repository at this point in the history
  • Loading branch information
saaya-code committed Mar 28, 2024
1 parent 1787a07 commit afaf384
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ExercicesTP/IHM/IHMRechercheEtudiant.java
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,7 @@ private void clearInputs() {
}

private void addEventListeners() {
//TODO implement

rechercheButton.addActionListener(e -> {
String rq = "SELECT titre,lieu,datef FROM FORMATION f,demandeetd d,ETUDIANT e WHERE (e.id=d.idEtudiant) and (f.idF = d.idFormation) and e.id = "+numEtdField.getText()+";";
model.updateTableWithNewResultSet(dao.selection(rq));
Expand Down

0 comments on commit afaf384

Please sign in to comment.