MedhiJava #16
@ -1,24 +0,0 @@
|
|||||||
/*
|
|
||||||
* Click nbfs://nbhost/SystemFileSystem/Templates/Licenses/license-default.txt to change this license
|
|
||||||
* Click nbfs://nbhost/SystemFileSystem/Templates/Classes/Class.java to edit this template
|
|
||||||
*/
|
|
||||||
package TEST;
|
|
||||||
|
|
||||||
import acces_aux_donnes.connexionSQL;
|
|
||||||
import java.sql.Connection;
|
|
||||||
import java.sql.ResultSet;
|
|
||||||
import java.sql.Statement;
|
|
||||||
|
|
||||||
/**
|
|
||||||
*
|
|
||||||
* @author emile.lalorcey
|
|
||||||
*/
|
|
||||||
public class test {
|
|
||||||
private Connection connexionTest;
|
|
||||||
private Statement stmt = null;
|
|
||||||
private ResultSet result = null;
|
|
||||||
|
|
||||||
|
|
||||||
connexionTest = connexionSQL.getConnect("10.121.38.196","bdgsb","admin","admin");
|
|
||||||
|
|
||||||
}
|
|
@ -5,6 +5,7 @@
|
|||||||
package TEST;
|
package TEST;
|
||||||
|
|
||||||
import acces_aux_donnes.connexionSQL;
|
import acces_aux_donnes.connexionSQL;
|
||||||
|
import acces_aux_donnes.praticienSQL;
|
||||||
import java.sql.Connection;
|
import java.sql.Connection;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -17,12 +18,15 @@ public class testMain {
|
|||||||
* @param args the command line arguments
|
* @param args the command line arguments
|
||||||
*/
|
*/
|
||||||
public static void main(String[] args) {
|
public static void main(String[] args) {
|
||||||
|
|
||||||
|
|
||||||
Connection connexionTest = connexionSQL.getConnect("10.121.38.196","bdgsb","adminGSB","mdpGSB");
|
//Connection connexionTest = connexionSQL.getConnect("10.121.38.196","bdgsb","adminGSB","mdpGSB");
|
||||||
//Elio
|
//Elio
|
||||||
//Connection connexionTest = connexionSQL.getConnect("10.121.38.75","bdgsb","adminGSB","mdpGSB");
|
//Connection connexionTest = connexionSQL.getConnect("10.121.38.75","bdgsb","adminGSB","mdpGSB");
|
||||||
//Yann
|
//Yann
|
||||||
//Connection connexionTest = connexionSQL.getConnect("10.121.38.69","bdgsb","appliGSB","(Uq1XV0Tr01s2H9Z");
|
//Connection connexionTest = connexionSQL.getConnect("10.121.38.69","bdgsb","appliGSB","(Uq1XV0Tr01s2H9Z");
|
||||||
|
praticienSQL a =new praticienSQL();
|
||||||
|
a.rechercherPraticien("Didier", "1234");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
@ -19,17 +19,17 @@ public class praticienSQL {
|
|||||||
private ResultSet result = null;
|
private ResultSet result = null;
|
||||||
|
|
||||||
public praticienSQL() {
|
public praticienSQL() {
|
||||||
connexionTest = connexionSQL.getConnect("10.121.38.173","bdmagasin", "adminBDMag", "mdpBDMag");
|
connexionTest = connexionSQL.getConnect("10.121.38.75","bdgsb","adminGSB","mdpGSB");
|
||||||
}
|
}
|
||||||
|
|
||||||
public String[] rechercherPraticien(String login, String mdp) {
|
public String[] rechercherPraticien(String login, String mdp) {
|
||||||
String[] praticienCherche = new String [2];
|
String[] praticienCherche = new String [2];
|
||||||
try {
|
try {
|
||||||
stmt = connexionTest.createStatement();
|
stmt = connexionTest.createStatement();
|
||||||
// Accès à la table client
|
// Accès à la table
|
||||||
result = stmt.executeQuery("SELECT * FROM client WHERE nom='"+login+
|
result = stmt.executeQuery("SELECT * FROM PRATICIENLOG WHERE id='"+login+
|
||||||
"' AND mdp='"+mdp + "';");
|
"' AND mdp='"+mdp + "';");
|
||||||
if (result.next()) { // Le client a été touvé
|
if (result.next()) { // Le praticien a été touvé
|
||||||
praticienCherche[0] = result.getString(1);
|
praticienCherche[0] = result.getString(1);
|
||||||
praticienCherche[1] = result.getString(2);
|
praticienCherche[1] = result.getString(2);
|
||||||
|
|
||||||
|
@ -157,12 +157,14 @@ public class jffConnexion extends javax.swing.JFrame {
|
|||||||
|
|
||||||
private void jBValiderActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_jBValiderActionPerformed
|
private void jBValiderActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_jBValiderActionPerformed
|
||||||
String identifiant = jTFIdentifiant.getText();
|
String identifiant = jTFIdentifiant.getText();
|
||||||
String motPasse = jPFmdp.getText();
|
String mdp = String.valueOf(jPFmdp.getPassword());
|
||||||
praticienSQL testPraticien = new praticienSQL();
|
praticienSQL testPraticien = new praticienSQL();
|
||||||
|
String [] lePraticien = testPraticien.rechercherPraticien(identifiant,mdp);
|
||||||
if (jTFIdentifiant.getText().equals(identifiant) && jPFmdp.getText().equals(motPasse)){
|
if (lePraticien[0] != null){
|
||||||
System.out.println("Gagner");
|
System.out.print("TEST REUSSIE");
|
||||||
}
|
}else {
|
||||||
|
System.out.print("TEST EMILE RACISTE");
|
||||||
|
}
|
||||||
}//GEN-LAST:event_jBValiderActionPerformed
|
}//GEN-LAST:event_jBValiderActionPerformed
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
Loading…
x
Reference in New Issue
Block a user