From afaf384cb17e6fa0a1038cfc24435b9ba2f83ac8 Mon Sep 17 00:00:00 2001 From: saaya-code Date: Thu, 28 Mar 2024 23:09:28 +0100 Subject: [PATCH] small refactors --- src/ExercicesTP/IHM/IHMRechercheEtudiant.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ExercicesTP/IHM/IHMRechercheEtudiant.java b/src/ExercicesTP/IHM/IHMRechercheEtudiant.java index 1874dab..3bd3406 100644 --- a/src/ExercicesTP/IHM/IHMRechercheEtudiant.java +++ b/src/ExercicesTP/IHM/IHMRechercheEtudiant.java @@ -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));