feat: fix user mysql

This commit is contained in:
Francis 2024-10-14 17:50:50 +02:00
parent 9b5ca90d85
commit bebc5fce87
2 changed files with 4 additions and 2 deletions

View File

@ -22,7 +22,7 @@ public class utilisateurMysql {
private Connection theConnection;
public utilisateurMysql() {
Connexion connexion = new Connexion("127.0.0.1", "bdclient", "java", "java");
Connexion connexion = new Connexion("127.0.0.1", "bdPersonnel", "java", "java");
this.theConnection = connexion.getConnection();
}
@ -30,10 +30,12 @@ public class utilisateurMysql {
Utilisateur util = null;
try {
PreparedStatement prepStmt = null;
String sql = "SELECT * FROM utilisateur WHERE login=? AND mdp=MD5(?) ";
String sql = "SELECT * FROM utilisateur WHERE login=? AND mdp=?";
prepStmt = theConnection.prepareStatement(sql);
prepStmt.setString(1, login);
prepStmt.setString(2, mdp);
System.out.println(login);
System.out.println(mdp);
ResultSet result = prepStmt.executeQuery();
if (result.next()) {
util = new Utilisateur(result.getString(1), result.getString(2),