Click or drag to resize

StardogV2ConnectorUpdate Method (String)

Executes a SPARQL Update against the Stardog store.

Namespace:  VDS.RDF.Storage
Assembly:  dotNetRDF (in dotNetRDF.dll) Version:
Syntax
public void Update(
	string sparqlUpdate
)

Parameters

sparqlUpdate
Type: SystemString
SPARQL Update.

Implements

IUpdateableStorageUpdate(String)
Remarks
Stardog executes SPARQL update requests in their own self contained transactions which do not interact with normal Stardog transactions that may be managed via this API. In some cases this can lead to unexpected behaviour, for example if you call Begin, make an update and then call Rollback the updates will not be rolled back.
See Also