Class VirtuosoReader
Class for reading RDF Graphs from a Virtuoso Native Quad Store into arbitrary Graphs.
Inheritance
System.Object
VirtuosoReader
Namespace: VDS.RDF.Parsing
Assembly: dotNetRDF.Data.Virtuoso.dll
Syntax
public class VirtuosoReader : object
Constructors
| Improve this Doc View SourceVirtuosoReader(String, String, String)
Creates a new instance of the Virtuoso Reader which connects to a Virtuoso Native Quad Store using the given Manager.
Declaration
public VirtuosoReader(String dbname, String dbuser, String dbpassword)
Parameters
Type | Name | Description |
---|---|---|
String | dbname | Database Name. |
String | dbuser | Database User. |
String | dbpassword | Database Password. |
Remarks
Assumes that Virtuoso is installed on the local host using the default port 1111.
|
Improve this Doc
View Source
VirtuosoReader(String, Int32, String, String, String)
Creates a new instance of the Virtuoso Reader which connects to a Virtuoso Native Quad Store using the given Manager.
Declaration
public VirtuosoReader(String dbserver, int dbport, String dbname, String dbuser, String dbpassword)
Parameters
Type | Name | Description |
---|---|---|
String | dbserver | Database Server. |
System.Int32 | dbport | Database Port. |
String | dbname | Database Name. |
String | dbuser | Database User. |
String | dbpassword | Database Password. |
VirtuosoReader(VirtuosoManager)
Creates a new instance of the Virtuoso Reader which connects to a Virtuoso Native Quad Store using the given Manager.
Declaration
public VirtuosoReader(VirtuosoManager manager)
Parameters
Type | Name | Description |
---|---|---|
VirtuosoManager | manager | Manager for the connection to Virtuoso. |
Methods
| Improve this Doc View SourceLoad(IGraph, String)
Loads a Graph from the Native Quad Store.
Declaration
public void Load(IGraph g, String graphUri)
Parameters
Type | Name | Description |
---|---|---|
IGraph | g | Graph to load into. |
String | graphUri | Uri of the Graph to load. |
Load(IGraph, Uri)
Loads a Graph from the Native Quad Store.
Declaration
public void Load(IGraph g, Uri graphUri)
Parameters
Type | Name | Description |
---|---|---|
IGraph | g | Graph to load into. |
Uri | graphUri | Uri of the Graph to load. |