* @inheritDoc
*/
public ResultSet selectQuery(final String theQuery) throws QueryException {
try {
final TupleQueryResult aTupleQueryResult = Repositories.selectQuery(mRepo, QueryLanguage.SERQL, theQuery);
return new AbstractResultSet(AdunaIterations.iterator(aTupleQueryResult)) {
@Override
public void close() {
// no-op
}
};