Bonjour, je voudrais utiliser proxool pour creer un pool de connexion,
j'integre le jar ds mon classpath et je change le Class.forName

Avant:
Class.forName("com.mysql.jdbc.Driver").newInstance();
Connection conn = DriverManager.getConnection("jdbc:mysql://localhost/test?user=test&password=test");
Maintenant:
Class.forName("org.logicalcobwebs.proxool.ProxoolDriver").newInstance();
Connection conn = DriverManager.getConnection("proxool.example:com.mysql.jdbc.Driver:jdbc:mysql://localhost/test?user=test&password=test");
Et je me retrouve avec une erreur GRAVE
java.lang.NoClassDefFoundError