// on the repository implementation. so its' not easy to do *one* solution that will work for all of them
// so we have to rely on our naive poor-man's transaction implementation.
if (theUseSerql) {
mQueryLang = QueryLanguage.SERQL;
setQueryFactory(new RdfQueryFactory(this, SerqlDialect.instance()));
}
else {
mQueryLang = QueryLanguage.SPARQL;
setQueryFactory(new RdfQueryFactory(this, SPARQLDialect.instance()));
}
}