On 09/03/16 10:34, robbie clifford wrote:
I have a number of ttl files that I am loading into an oracle SDB.At the moment
I am loading them all into the default model
e.g.
Store store = SDBFactory.connectStore(sdbConnection,storeDesc);Model model =
SDBFactory.connectDefaultModel(store);model.read(inputStream, null,
format.getName());
Should I be using a Dataset with named models to keep the ontologies separate?I
cannot figure out how to do this.
ThanksRobbie
You can load them into separate graphs - it's better to use
SDBFactory.connectDataset and get model from dataset. You can use
connectNamedModel but working with the Dataset is better.
Andy