Show / Hide Table of Contents

Dataset Files

You can treat a dataset file (NQuads, TriG or TriX) as a read-only triple store using the DatasetFileManager class.

Supported Capabilities

  • Read-Only access
  • SPARQL Query

Creating a Connection

You can create a connection to a dataset file like so:


DatasetFileManager dataset = new DatasetFileManager("example.trig", false);

The boolean parameter here controls whether to load the file asynchronously, if set to true your code will continue immediately but you won't be able to use the store immediately. If you use async loading the IsReady property will indicate when the store is ready for use.

  • Improve this Doc
In This Article
  • Supported Capabilities
  • Creating a Connection
Back to top Generated by DocFX