Interface IUpdateableTripleStore
Interface for Triple Stores which support SPARQL Update as per the SPARQL 1.1 specifications.
Inherited Members
System.IDisposable.Dispose()
Namespace: VDS.RDF
Assembly: dotNetRDF.dll
Syntax
public interface 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
| Improve this Doc View SourceExecuteUpdate(String)
Executes an Update against the Triple Store.
Declaration
void ExecuteUpdate(string update)
Parameters
Type | Name | Description |
---|---|---|
System.String | update | SPARQL Update Command(s). |
Remarks
As per the SPARQL 1.1 Update specification the command string may be a sequence of commands.
|
Improve this Doc
View Source
ExecuteUpdate(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. |