My properties :
dbProperties.put("derby.driver","org.apache.derby.jdbc.EmbeddedDriver");
dbProperties.put("derby.url" ,"jdbc:derby:");
dbProperties.put("user" ,"utilisateur");
dbProperties.put("password","123456");... Connection dbConnection = DriverManager.getConnection(dbUrl, dbProperties); Regards
