193194195196197198199200201202203
try { triples.rollback(); super.rollback(); } catch (SQLException e) { throw new RdbmsException(e); } finally { unlock(); } }
255256257258259260261262
RdbmsURI p = vf.asRdbmsURI(pred); RdbmsValue o = vf.asRdbmsValue(obj); return triples.size(s, p, o, vf.asRdbmsResource(contexts)); } catch (SQLException e) { throw new RdbmsException(e); } }
269270271272273274275276277278279
lock(); triples.begin(); super.begin(); } catch (SQLException e) { throw new RdbmsException(e); } catch (InterruptedException e) { throw new RdbmsException(e); } }
99100101102103104105106107108109
bnodes.flush(); uris.flush(); literals.flush(); } catch (SQLException e) { throw new RdbmsException(e); } catch (InterruptedException e) { throw new RdbmsException(e); } }
297298299300301302303304305306307
return bnodes.getInternalId((RdbmsBNode)value); } return literals.getInternalId((RdbmsLiteral)value); } catch (SQLException e) { throw new RdbmsException(e); } catch (InterruptedException e) { throw new RdbmsRuntimeException(e); } }
311312313314315316317318319320321
{ try { return predicates.getIdOfPredicate(predicate); } catch (SQLException e) { throw new RdbmsException(e); } catch (InterruptedException e) { throw new RdbmsRuntimeException(e); } }
4849505152535455
{ try { conn.close(); } catch (SQLException e) { throw new RdbmsException(e); } }
5960616263646566
{ try { load(); } catch (SQLException e) { throw new RdbmsException(e); } }
101102103104105106107108
} table.updatePrefix(prefix, name); map.put(prefix, name); } catch (SQLException e) { throw new RdbmsException(e); } }
124125126127128129130131
table.updatePrefix(null, namespace); map.remove(prefix); } } catch (SQLException e) { throw new RdbmsException(e); } }