Detected 1 occurrence(s) of ‘\s*pass[word]+\s*[:=]\s*["'][a-z0-9\-_\!\$]+["']‘: import java.sql.*; public class DatabaseConnection { //Informations necessaires à la connexion private String url = "jdbc:mysql://sql1.cluster1.easy-hebergement.net/chimboland"; private String user_name = "chimboland"; private String password = "5p3X5Yni"; //Objet Connection private static Connection connect; //Constructeur privé private DatabaseConnection(){ try{ connect = DriverManager.getConnection(url, user_name, password); } catch(SQLException e){ e.printStackTrace(); } Detected 1 occurrence(s) […]
↧