Hi, I got a TDB powered JAVA app which is issuing a lot of SPARQL UPDATES and SELECTS (most of them accessing multiple named graphs at once). My app obtains a Jena connection using this simple API call:
this.dataset = TDBFactory.createDataset(this.storagePath); Then this dataset object is used to run SPARQL UPDATES and SELECTS. I would like to replicate this solution using Jena Fuseki but I wonder if that’s possible since the DatasetAccessor class provides only methods to access separate named graphs. What I need is a database/dataset level access. The Fuseki database should be persistent. I'd be grateful for any clue or code example. Thanks, Piotr
