String queryString ="PREFIX dbr: <http://dbpedia.org/resource/> " + "PREFIX dbprop:<http://dbpedia.org/property/>" +
"SELECT * " + "WHERE {" + " dbr:Germany dbprop:capital ?x"+ "}" ;
at the end I display it
System.out.println(soln.getResource("x".toString()));
*But it displays nothing (no error message but no output)*
*What is the problem in the code.*
