Compare commits
2 Commits
6b89fb950d
...
35043c5d54
Author | SHA1 | Date | |
---|---|---|---|
35043c5d54 | |||
3eca7c4d6a |
@ -8,6 +8,7 @@ import java.sql.Connection;
|
||||
import java.sql.ResultSet;
|
||||
import java.sql.SQLException;
|
||||
import java.sql.Statement;
|
||||
import java.util.ArrayList;
|
||||
|
||||
/**
|
||||
*
|
||||
@ -22,16 +23,16 @@ public class praticienSQL {
|
||||
connexionTest = connexionSQL.getConnect("10.121.38.75","bdgsb","adminGSB","mdpGSB");
|
||||
}
|
||||
|
||||
public String[] rechercherPraticien(String login, String mdp) {
|
||||
String[] praticienCherche = new String [2];
|
||||
public ArrayList<String> rechercherPraticien(String login, String mdp) {
|
||||
ArrayList<String> praticienCherche = new ArrayList<String>();
|
||||
try {
|
||||
stmt = connexionTest.createStatement();
|
||||
// Accès à la table
|
||||
result = stmt.executeQuery("SELECT * FROM PRATICIENLOG WHERE id='"+login+
|
||||
"' AND mdp='"+mdp + "';");
|
||||
if (result.next()) { // Le praticien a été touvé
|
||||
praticienCherche[0] = result.getString(1);
|
||||
praticienCherche[1] = result.getString(2);
|
||||
praticienCherche.add(result.getString(1));
|
||||
praticienCherche.add(result.getString(2));
|
||||
|
||||
}
|
||||
result.close();
|
||||
|
@ -5,6 +5,7 @@
|
||||
package presentation;
|
||||
|
||||
import acces_aux_donnes.praticienSQL;
|
||||
import java.util.ArrayList;
|
||||
|
||||
/**
|
||||
*
|
||||
@ -159,9 +160,10 @@ public class jffConnexion extends javax.swing.JFrame {
|
||||
String identifiant = jTFIdentifiant.getText();
|
||||
String mdp = String.valueOf(jPFmdp.getPassword());
|
||||
praticienSQL testPraticien = new praticienSQL();
|
||||
String [] lePraticien = testPraticien.rechercherPraticien(identifiant,mdp);
|
||||
if (lePraticien[0] != null){
|
||||
ArrayList<String>lePraticien = testPraticien.rechercherPraticien(identifiant,mdp);
|
||||
if (lePraticien.get(0) != null){
|
||||
System.out.print("TEST REUSSIE");
|
||||
new jffFamilleMedoc().setVisible(true);
|
||||
}else {
|
||||
System.out.print("TEST EMILE RACISTE");
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user