From e4dc4a360393787b8d88dfc6120e87303400797c Mon Sep 17 00:00:00 2001 From: "emile.malcuit" Date: Wed, 12 Mar 2025 17:02:31 +0100 Subject: [PATCH] =?UTF-8?q?medicamentSQL=20fini=20jffMedicament=20d=C3=A9b?= =?UTF-8?q?ut?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- GSBapplication/src/TEST/testMain.java | 8 +- .../src/acces_aux_donnes/MedicamentSQL.java | 50 ++++++++ .../src/acces_aux_donnes/familleMedocSQL.java | 25 ++++ .../src/acces_aux_donnes/praticienSQL.java | 4 +- .../src/presentation/jffInfoMedoc.form | 121 +++++++++++++++++- .../src/presentation/jffInfoMedoc.java | 92 ++++++++++++- 6 files changed, 292 insertions(+), 8 deletions(-) diff --git a/GSBapplication/src/TEST/testMain.java b/GSBapplication/src/TEST/testMain.java index 4120c83..5e09b06 100644 --- a/GSBapplication/src/TEST/testMain.java +++ b/GSBapplication/src/TEST/testMain.java @@ -6,6 +6,7 @@ package TEST; import acces_aux_donnes.connexionSQL; import acces_aux_donnes.praticienSQL; +import acces_aux_donnes.MedicamentSQL; import java.sql.Connection; /** @@ -25,8 +26,11 @@ public class testMain { //Connection connexionTest = connexionSQL.getConnect("10.121.38.75","bdgsb","adminGSB","mdpGSB"); //Yann //Connection connexionTest = connexionSQL.getConnect("10.121.38.69","bdgsb","appliGSB","(Uq1XV0Tr01s2H9Z"); - praticienSQL a =new praticienSQL(); - a.rechercherPraticien("Didier", "1234"); + //praticienSQL a =new praticienSQL(); + //a.rechercherPraticien("Didier", "1234"); + + MedicamentSQL b = new MedicamentSQL(); + b.rechercherMedicament("3MYC7"); } diff --git a/GSBapplication/src/acces_aux_donnes/MedicamentSQL.java b/GSBapplication/src/acces_aux_donnes/MedicamentSQL.java index df72273..7c698b7 100644 --- a/GSBapplication/src/acces_aux_donnes/MedicamentSQL.java +++ b/GSBapplication/src/acces_aux_donnes/MedicamentSQL.java @@ -4,10 +4,60 @@ */ package acces_aux_donnes; +import java.sql.Connection; +import java.sql.ResultSet; +import java.sql.SQLException; +import java.sql.Statement; +import java.util.ArrayList; /** * * @author emile.lalorcey */ public class MedicamentSQL { + private Connection connexionTest; + private Statement stmt = null; + private ResultSet result = null; + + public MedicamentSQL() { + connexionTest = connexionSQL.getConnect("10.121.38.75","bdgsb","adminGSB","mdpGSB"); + } + public ArrayList rechercherMedicament (String idMedoc){ + ArrayList infoMedoc = new ArrayList(); + + try { + stmt = connexionTest.createStatement(); + // Accès à la table + result = stmt.executeQuery("SELECT * FROM MEDICAMENT WHERE mDepotLegal ='"+idMedoc+"';"); + if(result.next()){ + infoMedoc.add(result.getString(1)); + infoMedoc.add(result.getString(2)); + infoMedoc.add(result.getString(3)); + infoMedoc.add(result.getString(4)); + infoMedoc.add(result.getString(5)); + infoMedoc.add(result.getString(6)); + } + result.close(); + stmt.close(); + }catch (SQLException ex) { + System.out.println("SQLException : " + ex.getMessage()); + System.out.println("SQLState : " + ex.getSQLState()); + System.out.println("Code erreur : " + ex.getErrorCode()); + } + return infoMedoc; + } + + + + + + + + + + + + + + } diff --git a/GSBapplication/src/acces_aux_donnes/familleMedocSQL.java b/GSBapplication/src/acces_aux_donnes/familleMedocSQL.java index a57400a..e27a6a5 100644 --- a/GSBapplication/src/acces_aux_donnes/familleMedocSQL.java +++ b/GSBapplication/src/acces_aux_donnes/familleMedocSQL.java @@ -4,10 +4,35 @@ */ package acces_aux_donnes; +import java.sql.Connection; +import java.sql.ResultSet; +import java.sql.Statement; + /** * * @author emile.lalorcey */ public class familleMedocSQL { + private Connection connexionTest; + private Statement stmt = null; + private ResultSet result = null; + + public familleMedocSQL(){ + connexionTest = connexionSQL.getConnect("10.121.38.75","bdgsb","adminGSB","mdpGSB"); + } + + + + + + + + + + + + + + } diff --git a/GSBapplication/src/acces_aux_donnes/praticienSQL.java b/GSBapplication/src/acces_aux_donnes/praticienSQL.java index 493bed5..f32b2b2 100644 --- a/GSBapplication/src/acces_aux_donnes/praticienSQL.java +++ b/GSBapplication/src/acces_aux_donnes/praticienSQL.java @@ -34,8 +34,8 @@ public class praticienSQL { praticienCherche[1] = result.getString(2); } - result.close(); - stmt.close(); + result.close(); + stmt.close(); } catch (SQLException ex) { System.out.println("SQLException : " + ex.getMessage()); System.out.println("SQLState : " + ex.getSQLState()); diff --git a/GSBapplication/src/presentation/jffInfoMedoc.form b/GSBapplication/src/presentation/jffInfoMedoc.form index 769eecd..d5d700d 100644 --- a/GSBapplication/src/presentation/jffInfoMedoc.form +++ b/GSBapplication/src/presentation/jffInfoMedoc.form @@ -23,13 +23,130 @@ - + + + + + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/GSBapplication/src/presentation/jffInfoMedoc.java b/GSBapplication/src/presentation/jffInfoMedoc.java index 6cfdc1f..ec24e12 100644 --- a/GSBapplication/src/presentation/jffInfoMedoc.java +++ b/GSBapplication/src/presentation/jffInfoMedoc.java @@ -26,17 +26,97 @@ public class jffInfoMedoc extends javax.swing.JFrame { // //GEN-BEGIN:initComponents private void initComponents() { + jPFond = new javax.swing.JPanel(); + jLNomMedoc = new javax.swing.JLabel(); + jLabel1 = new javax.swing.JLabel(); + jLComposition = new javax.swing.JLabel(); + jLContrindication = new javax.swing.JLabel(); + jLImage = new javax.swing.JLabel(); + jSeparator1 = new javax.swing.JSeparator(); + jLPrix = new javax.swing.JLabel(); + setDefaultCloseOperation(javax.swing.WindowConstants.EXIT_ON_CLOSE); + jLNomMedoc.setFont(new java.awt.Font("Segoe UI Black", 0, 18)); // NOI18N + jLNomMedoc.setText("Nom du Médoc"); + + jLabel1.setText("Les effets du médicament"); + + jLComposition.setText("Composition du médoc"); + + jLContrindication.setText("Contrindications du médoc"); + + jLImage.setText("Image"); + + jLPrix.setText("Prix :"); + + javax.swing.GroupLayout jPFondLayout = new javax.swing.GroupLayout(jPFond); + jPFond.setLayout(jPFondLayout); + jPFondLayout.setHorizontalGroup( + jPFondLayout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING) + .addGroup(jPFondLayout.createSequentialGroup() + .addGroup(jPFondLayout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING) + .addComponent(jSeparator1, javax.swing.GroupLayout.Alignment.TRAILING) + .addGroup(jPFondLayout.createSequentialGroup() + .addGroup(jPFondLayout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING) + .addGroup(jPFondLayout.createSequentialGroup() + .addContainerGap() + .addComponent(jLContrindication, javax.swing.GroupLayout.PREFERRED_SIZE, 265, javax.swing.GroupLayout.PREFERRED_SIZE) + .addGap(18, 18, 18) + .addComponent(jLPrix, javax.swing.GroupLayout.PREFERRED_SIZE, 100, javax.swing.GroupLayout.PREFERRED_SIZE)) + .addGroup(jPFondLayout.createSequentialGroup() + .addContainerGap() + .addGroup(jPFondLayout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING) + .addComponent(jLComposition, javax.swing.GroupLayout.PREFERRED_SIZE, 265, javax.swing.GroupLayout.PREFERRED_SIZE) + .addComponent(jLabel1, javax.swing.GroupLayout.PREFERRED_SIZE, 265, javax.swing.GroupLayout.PREFERRED_SIZE)) + .addGap(18, 18, 18) + .addComponent(jLImage, javax.swing.GroupLayout.PREFERRED_SIZE, 157, javax.swing.GroupLayout.PREFERRED_SIZE))) + .addGap(0, 26, Short.MAX_VALUE))) + .addContainerGap()) + .addGroup(jPFondLayout.createSequentialGroup() + .addGap(168, 168, 168) + .addComponent(jLNomMedoc) + .addContainerGap(javax.swing.GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE)) + ); + jPFondLayout.setVerticalGroup( + jPFondLayout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING) + .addGroup(jPFondLayout.createSequentialGroup() + .addContainerGap() + .addComponent(jLNomMedoc) + .addGap(39, 39, 39) + .addGroup(jPFondLayout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING, false) + .addGroup(jPFondLayout.createSequentialGroup() + .addComponent(jLabel1, javax.swing.GroupLayout.PREFERRED_SIZE, 86, javax.swing.GroupLayout.PREFERRED_SIZE) + .addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.UNRELATED) + .addComponent(jLComposition, javax.swing.GroupLayout.PREFERRED_SIZE, 74, javax.swing.GroupLayout.PREFERRED_SIZE)) + .addComponent(jLImage, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE)) + .addGroup(jPFondLayout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING) + .addGroup(jPFondLayout.createSequentialGroup() + .addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.UNRELATED, 18, Short.MAX_VALUE) + .addComponent(jLContrindication, javax.swing.GroupLayout.PREFERRED_SIZE, 70, javax.swing.GroupLayout.PREFERRED_SIZE) + .addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED, 23, Short.MAX_VALUE)) + .addGroup(jPFondLayout.createSequentialGroup() + .addGap(35, 35, 35) + .addComponent(jLPrix, javax.swing.GroupLayout.PREFERRED_SIZE, 26, javax.swing.GroupLayout.PREFERRED_SIZE) + .addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED, javax.swing.GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE))) + .addComponent(jSeparator1, javax.swing.GroupLayout.PREFERRED_SIZE, 10, javax.swing.GroupLayout.PREFERRED_SIZE) + .addGap(169, 169, 169)) + ); + javax.swing.GroupLayout layout = new javax.swing.GroupLayout(getContentPane()); getContentPane().setLayout(layout); layout.setHorizontalGroup( layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING) - .addGap(0, 400, Short.MAX_VALUE) + .addGroup(layout.createSequentialGroup() + .addContainerGap() + .addComponent(jPFond, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE) + .addContainerGap()) ); layout.setVerticalGroup( layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING) - .addGap(0, 300, Short.MAX_VALUE) + .addGroup(layout.createSequentialGroup() + .addComponent(jPFond, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE) + .addGap(16, 16, 16)) ); pack(); @@ -78,5 +158,13 @@ public class jffInfoMedoc extends javax.swing.JFrame { } // Variables declaration - do not modify//GEN-BEGIN:variables + private javax.swing.JLabel jLComposition; + private javax.swing.JLabel jLContrindication; + private javax.swing.JLabel jLImage; + private javax.swing.JLabel jLNomMedoc; + private javax.swing.JLabel jLPrix; + private javax.swing.JLabel jLabel1; + private javax.swing.JPanel jPFond; + private javax.swing.JSeparator jSeparator1; // End of variables declaration//GEN-END:variables }