protected CloseableIteration<? extends Statement, SailException> getStatementsInternal(
Resource subj, URI pred, Value obj, boolean includeInferred,
Resource... contexts) throws SailException {
RdbmsResource s = vf.asRdbmsResource(subj);
RdbmsURI p = vf.asRdbmsURI(pred);
RdbmsValue o = vf.asRdbmsValue(obj, pred);
RdbmsResource[] c = vf.asRdbmsResource(contexts);
return triples.find(s, p, o, includeInferred, c);
}