i am attempting to use the following query:
QUERY="PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#> \n" +
" PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> \n" +
"CONSTRUCT { \n" +
"?cls ?cp ?co . \n" +
" ?prop ?pp ?po . \n" +
"}" +
"WHERE { \n" +
"?cls a rdfs:Class . \n" +
"?cls ?cp ?co . \n" +
"?prop a rdf:Property . \n" +
"?prop ?pp ?po . \n " +
"}";
results = qe.execSelect();
THe query is in string variable QUERY.
I am using jena
THe Whole thing is in a interface that has 2 buttons.
QUERY takes a select query when users click button1 and the above query if user clicks button2
GEtting the following exception if QUERY contains both construct and select
Exception in thread "AWT-EventQueue-0" com.hp.hpl.jena.query.QueryExecException: Attempt to have ResultSet from a CONSTRUCT query
at com.hp.hpl.jena.sparql.engine.QueryExecutionBase.execSelect(QueryExecutionBase.java:93)