Interface ISparqlUpdateTripleStore
Interface for Triple Stores which support SPARQL Update as per the SPARQL 1.1 specifications.
Inherited Members
Namespace: VDS.RDF
Assembly: dotNetRdf.dll
Syntax
public interface ISparqlUpdateTripleStore : IUpdateableTripleStore, ITripleStore, IDisposable
Remarks
A Store which supports this may implement various access control mechanisms which limit what operations are actually permitted.
It is the responsibility of the Store class to ensure that commands are permissible before invoking them.
Methods
| Edit this page View SourceExecuteUpdate(SparqlUpdateCommand)
Executes a single Update Command against the Triple Store.
Declaration
void ExecuteUpdate(SparqlUpdateCommand update)
Parameters
Type | Name | Description |
---|---|---|
SparqlUpdateCommand | update | SPARQL Update Command. |
ExecuteUpdate(SparqlUpdateCommandSet)
Executes a set of Update Commands against the Triple Store.
Declaration
void ExecuteUpdate(SparqlUpdateCommandSet updates)
Parameters
Type | Name | Description |
---|---|---|
SparqlUpdateCommandSet | updates | SPARQL Update Command Set. |