* If the supplied query language is not supported.
*/
public TupleQuery prepareTupleQuery(QueryLanguage language, final String query, String baseeURI) throws RepositoryException, MalformedQueryException {
if (language != QueryLanguage.SPARQL)
throw new UnsupportedQueryLanguageException(" : Only SPARQL queries are supported");
TupleQuery q = new VirtuosoTupleQuery() {
public TupleQueryResult evaluate() throws QueryEvaluationException {
return executeSPARQLForTupleResult(query, getDataset(), getIncludeInferred(), getBindings());
}