On 10/01/13 16:52, Carina Haupt wrote:
Hi,is it possible to delete triples from an external triple store like Virtuoso using the Jena API? I found examples to use SPARQL/UPDATE statements for in memory stores, but not external hosted ones. Regards, Carina
You can create executions on remote endpoints by:
UpdateExecution uExec =
UpdateExecutionFactory.createRemote(Update, remoteEndpoint) ;
uExec.execute() ;
Andy
